|
楼主,你先前的附件中的符号,其实是《项目符号》;而 相见是缘 朋友的附件中的符号,是插入的符号(或软键盘《特殊符号》中的符号。表面都是黑圆点,其实它们是不一样的,处理代码也不同。但现在你的附件中的符号又变为了 相见是缘朋友 的符号,你确定不用《项目符号》中的黑圆点,而用《特殊符号》中的黑圆点了吗?------好了,你可以混用这两个黑圆点了!请试用下面代码:
- Sub test()
- Dim i As Paragraph, t As Table
- '预处理
- With ActiveDocument
- .Content.Find.Execute "[^13^11]", , , 1, , , , , , "^p", 2 '回车符换行符转段落标记
- .ConvertNumbersToText '自动编号、项目符号转文本
- '
- '取消所有表格文字环绕(循环遍历所有表格)
- For Each t In .Tables
- With t.Range.Rows
- .WrapAroundText = False '取消环绕
- .Alignment = wdAlignRowCenter '居中
- End With
- Next
- '
- '循环遍历所有段落
- For Each i In .Paragraphs
- With i.Range
- If Not .Information(12) Then
- If .Text Like "●*" Then .Font.Color = wdColorRed '字体格式=红色(特殊符号:黑圆点)
- If .Text Like Chr(63) & vbTab & "*" Then .Font.Color = wdColorPink '字体格式=粉红(项目符号:黑圆点)
- End If
- End With
- Next
- End With
- End Sub
复制代码 |
|