gpt4 book ai didi

ms-word - 微软字 : select text inside a table cell

转载 作者:行者123 更新时间:2023-12-05 04:14:52 25 4
gpt4 key购买 nike

我需要在 Word 文档的表格中的单元格内选择一个文本(例如,两个字符)。以下代码:

Sub testTable()
For Each itable In ActiveDocument.Tables
itable.Cell(1, 2).Range.Select
Next
End Sub

选择表格第一行第二个单元格的所有内容。我如何修改它以仅选择单元格内容的一个子集,例如从第 4 个字符到第 9 个字符?

最佳答案

Range 对象有一个 Characters 属性,所以:

itable.Cell(1,2).Range.Characters(4).Select
Selection.MoveEnd wdCharacter, 5

另一种方法是使用 Range 对象:

Dim rng as Word.Range
Set rng = itable.Cell(1,2).Range.Characters(4)
rng.End = itable.Cell(1,2).Range.Characters(9)

主题也有变化......

关于ms-word - 微软字 : select text inside a table cell,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33946827/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com