VBA Word - Formatando o Texto
With Selection.Font
' the Latin text font name and size...
.Name = "Verdana"
.Size = 12
' Bold and Italic are the Font Style...
.Bold = False
.Italic = False
.Underline = wdUnderlineNone
.UnderlineColor = wdColorAutomatic
' The following are the font effects...
.StrikeThrough = False
.DoubleStrikeThrough = False
.Outline = False
.Emboss = False
.Shadow = False
.Hidden = False
.SmallCaps = True
.AllCaps = False
.Color = wdColorAutomatic
.Engrave = False
.Superscript = False
.Subscript = False
' Character spacing...
.Spacing = -1
.Scaling = 100
.Position = -2
.Kerning = 12
' One of the available Annimation effects.
' Can be one of the following...
' wdAnimationBlinkingBackground
' wdAnimationLasVegasLights
' wdAnimationMarchingBlackAnts
' wdAnimationMarchingRedAnts
' wdAnimationShimmer
' wdAnimationSparkleText
' wdAnimationSparkleText
.Animation = wdAnimationNone
The font, size, and style of Bidirectional fonts.
.SizeBi = 12
.NameBi = "Tahoma"
.BoldBi = False
.ItalicBi = False
End With
brazilsalesforceeffectiveness@gmail.com
Nenhum comentário:
Postar um comentário