I have am trying to automate the reference insertion. I have a macro that does that, but I basically want the figure insertion to be the same style as where it is being inserted, and I would like it to be bold...Also, I only want the those characters to be bold, so if I start typing again, it will revert back to the font that was used previously.

What do I need to add to make that a reality?

Sub InsertFigureReference()
With Application.Dialogs(wdDialogInsertCrossReference)
.ReferenceType = "Figure"
.ReferenceKind = wdOnlyLabelAndNumber
.InsertAsHyperlink = True
.Show
End With
End Sub


Many thanks in advance.