|
Sub limonet()
Dim Cset As New Collection, i%
For i = 3 To ActiveDocument.Paragraphs.Count
Cset.Add ActiveDocument.Paragraphs(i).Range.ListFormat.ListString & ActiveDocument.Paragraphs(i).Range.Text
Next i
Selection.GoTo What:=wdGoToLine, Which:=wdGoToFirst, Count:=3
Selection.EndKey wdStory, wdExtend
Selection.Font.Size = 26
Selection.Range.ListFormat.RemoveNumbers NumberType:=wdNumberParagraph
For i = 1 To Cset.Count
Selection.TypeText Text:=Cset.Item(i)
' ActiveDocument.PrintOut
Selection.GoTo What:=wdGoToLine, Which:=wdGoToFirst, Count:=3
Selection.EndKey wdStory, wdExtend
Next i
End Sub |
评分
-
2
查看全部评分
-
|