江湖风云录疯魔刀法:请以补充说明里的为例教我怎么改?

来源:百度文库 编辑:高考问答 时间:2024/04/30 04:30:35
对Hidden宏和Show宏代码进行修改,将字体、字号等属性删除,只保留Hidden(隐藏)属性,对这句话我不会操作,
Sub Macro2()
'
' Macro2 Macro
' 宏在 2006-2-10 由 cw 录制
'
Selection.WholeStory
With Selection.Font
.NameFarEast = "宋体"
.NameAscii = "Times New Roman"
.NameOther = "Times New Roman"
.Name = "宋体"
.Size = 9
.Bold = False
.Italic = False
.Underline = wdUnderlineNone
.UnderlineColor = wdColorAutomatic
.StrikeThrough = False
.DoubleStrikeThrough = False
.Outline = False
.Emboss = False
.Shadow = False
.Hidden = True
.SmallCaps = False
.AllCaps = False
.Color = wdColorAutomatic
.Engrave = False
.Superscript = False
.Subscript = False
.Spacing = 0
.Scaling = 100
.Position = 0
.Kerning = 1
.Animation = wdAnimationNone
.DisableCharacterSpaceGrid = False
.EmphasisMark = wdEmphasisMarkNone
End With
End Sub