你好,我这边做了些研究,得到如下结论:
1. SelText设置的时候,单元格里要有这些文字,才能被选中。如果没有匹配的,就不会被选中。
2. 可以设置 .EditModeReplace = True ,这样可以看到选中的部分的hightlight效果。
3. 你想实现的需求是什么?看能不能通过其他方法来实现?
- Private Sub Command2_Click()
-
- With Me.fpSpread1
- .SetFocus
- .SetActiveCell 1, 1
- .EditMode = True
- .EditModeReplace = True
-
-
- 'DoEvents
- '.SelStart = 0
- '.SelLength = 2
- .SelText = "XX"
- .SelText = "Test"
- End With
- End Sub
复制代码 |