Sim, com as três sub-rotinas VBA a seguir adicionadas ao seu modelo Normal ou adicionadas a um modelo personalizado separado que é carregado na pasta Startup do Word ou no próprio documento se ele fosse um documento ".docm" habilitado para macro. / p>
Sub Bold()
'
' Bold Macro
' Makes the selection bold (toggle)
'
If Not Selection.Range.Start = Selection.Range.End Then
Selection.Font.Bold = wdToggle
End If
End Sub
Sub Italic()
'
' Italic Macro
' Makes the selection italic (toggle)
'
If Not Selection.Range.Start = Selection.Range.End Then
Selection.Font.Italic = wdToggle
End If
End Sub
Sub Underline()
'
' Underline Macro
' Formats the selection with a continuous underline (toggle)
'
If Not Selection.Range.Start = Selection.Range.End Then
If Selection.Font.Underline = wdUnderlineNone Then
Selection.Font.Underline = wdUnderlineSingle
Else
Selection.Font.Underline = wdUnderlineNone
End If
End If
End Sub