Word.Interfaces.TableCellData interface

一个接口,用于描述通过调用 tableCell.toJSON()返回的数据。

属性

body

获取单元格的 body 对象。

cellIndex

获取单元格行中的单元格索引。

columnWidth

指定单元格列的宽度(以磅为单位)。 此方法适用于一致的 table。

horizontalAlignment

指定单元格的水平对齐方式。 该值可以是“Left”、“Centered”、“Right”或“Justified”。

rowIndex

获取表中单元格行的索引。

shadingColor

指定单元格的底纹颜色。 按“#RRGGBB”格式或使用颜色名称指定颜色。

value

指定单元格的文本。

verticalAlignment

指定单元格的垂直对齐方式。 该值可以是“Top”、“Center”或“Bottom”。

width

获取单元格的宽度(以磅为单位)。

属性详细信息

body

获取单元格的 body 对象。

body?: Word.Interfaces.BodyData;

属性值

注解

[ API 集:WordApi 1.3 ]

cellIndex

获取单元格行中的单元格索引。

cellIndex?: number;

属性值

number

注解

[ API 集:WordApi 1.3 ]

columnWidth

指定单元格列的宽度(以磅为单位)。 此方法适用于一致的 table。

columnWidth?: number;

属性值

number

注解

[ API 集:WordApi 1.3 ]

horizontalAlignment

指定单元格的水平对齐方式。 该值可以是“Left”、“Centered”、“Right”或“Justified”。

horizontalAlignment?: Word.Alignment | "Mixed" | "Unknown" | "Left" | "Centered" | "Right" | "Justified";

属性值

Word.Alignment | "Mixed" | "Unknown" | "Left" | "Centered" | "Right" | "Justified"

注解

[ API 集:WordApi 1.3 ]

rowIndex

获取表中单元格行的索引。

rowIndex?: number;

属性值

number

注解

[ API 集:WordApi 1.3 ]

shadingColor

指定单元格的底纹颜色。 按“#RRGGBB”格式或使用颜色名称指定颜色。

shadingColor?: string;

属性值

string

注解

[ API 集:WordApi 1.3 ]

value

指定单元格的文本。

value?: string;

属性值

string

注解

[ API 集:WordApi 1.3 ]

verticalAlignment

指定单元格的垂直对齐方式。 该值可以是“Top”、“Center”或“Bottom”。

verticalAlignment?: Word.VerticalAlignment | "Mixed" | "Top" | "Center" | "Bottom";

属性值

Word.VerticalAlignment | "Mixed" | "Top" | "Center" | "Bottom"

注解

[ API 集:WordApi 1.3 ]

width

获取单元格的宽度(以磅为单位)。

width?: number;

属性值

number

注解

[ API 集:WordApi 1.3 ]