Table 对象 (Word)

表示单个表格。 Table 对象是 集合的一个成员。 Tables 集合包含指定选定区域、范围或文档中的所有表格。

备注

使用 Tables (Index) 可返回一个 Table 对象,其中 Index 为索引号。 索引号代表表格在所选内容、范围或文档中的位置。 以下示例将活动文档中的第一个表格转换为文本。

ActiveDocument.Tables(1).ConvertToText Separator:=wdSeparateByTabs

使用 Add 方法可在指定范围添加表格。 以下示例在活动文档的开头添加一个 3x4 的表格。

Set myRange = ActiveDocument.Range(Start:=0, End:=0) 
ActiveDocument.Tables.Add Range:=myRange, NumRows:=3, NumColumns:=4

方法

名称
ApplyStyleDirectFormatting
AutoFitBehavior
AutoFormat
Cell
ConvertToText
删除
Select
Sort
SortAscending
SortDescending
Split
UpdateAutoFormat

属性

名称
AllowAutoFit
Application
ApplyStyleColumnBands
ApplyStyleFirstColumn
ApplyStyleHeadingRows
ApplyStyleLastColumn
ApplyStyleLastRow
ApplyStyleRowBands
AutoFormatType
Borders
BottomPadding
Columns
Creator
Descr
ID
LeftPadding
NestingLevel
Parent
PreferredWidth
PreferredWidthType
Range
RightPadding
Rows
Shading
Spacing
Style
TableDirection
Tables
Title
TopPadding
Uniform

另请参阅

Word 对象模型参考

支持和反馈

有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。