作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 range.find 方法提取粗体文本,除非整个范围实际上是粗体(不太可能发生,这更多的是边缘条件),否则一切都是桃色的。
With rngFindRange.Find
.ClearFormatting
.Font.Bold = True
Do
.Execute
If Not .Found Then
Exit Do
End If
'do something with found text'
Set rngFindRange = ActiveDocument.Range(rngFindRange.End + 1, Selection.End)
Loop
上面的内容匹配开头或结尾处的粗体文本,甚至两者都匹配,但当整个范围都是粗体时则不匹配。我想在搜索范围之前我可能必须测试 range.font.bold = true 。 stackoverflow 是怎么想的?
最佳答案
这应该找到任何粗体文本:
Sub SearchBoldText()
Dim rng As Range
Set rng = ThisDocument.Range(0, 0)
With rng.Find
.ClearFormatting
.Format = True
.Font.Bold = True
While .Execute
rng.Select
rng.Collapse direction:=wdCollapseEnd
Wend
End With
Set rng = Nothing
End Sub
关于vba - 当使用 range.find 查找粗体文本时,如果整个选择都是粗体,则不会找到!,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/975033/
下面是我用来制作 1px 文本描边轮廓的代码。但是如何使轮廓变粗呢?如果我只是用“5px”替换所有“1px”,结果看起来很疯狂。 HTML Hello! CSS .element { color:
我是一名优秀的程序员,十分优秀!