Word.Interfaces.TableRowCollectionLoadOptions interface
Contains the collection of the document's TableRow objects.
Remarks
Properties
$all | Specifying |
cell |
For EACH ITEM in the collection: Gets the number of cells in the row. |
font | For EACH ITEM in the collection: Gets the font. Use this to get and set font name, size, color, and other properties. |
horizontal |
For EACH ITEM in the collection: Specifies the horizontal alignment of every cell in the row. The value can be 'Left', 'Centered', 'Right', or 'Justified'. |
is |
For EACH ITEM in the collection: Checks whether the row is a header row. To set the number of header rows, use |
parent |
For EACH ITEM in the collection: Gets parent table. |
preferred |
For EACH ITEM in the collection: Specifies the preferred height of the row in points. |
row |
For EACH ITEM in the collection: Gets the index of the row in its parent table. |
shading |
For EACH ITEM in the collection: Specifies the shading color. Color is specified in "#RRGGBB" format or by using the color name. |
values | For EACH ITEM in the collection: Specifies the text values in the row, as a 2D JavaScript array. |
vertical |
For EACH ITEM in the collection: Specifies the vertical alignment of the cells in the row. The value can be 'Top', 'Center', or 'Bottom'. |
Property Details
$all
Specifying $all
for the load options loads all the scalar properties (such as Range.address
) but not the navigational properties (such as Range.format.fill.color
).
$all?: boolean;
Property Value
boolean
cellCount
For EACH ITEM in the collection: Gets the number of cells in the row.
cellCount?: boolean;
Property Value
boolean
Remarks
font
For EACH ITEM in the collection: Gets the font. Use this to get and set font name, size, color, and other properties.
font?: Word.Interfaces.FontLoadOptions;
Property Value
Remarks
horizontalAlignment
For EACH ITEM in the collection: Specifies the horizontal alignment of every cell in the row. The value can be 'Left', 'Centered', 'Right', or 'Justified'.
horizontalAlignment?: boolean;
Property Value
boolean
Remarks
isHeader
For EACH ITEM in the collection: Checks whether the row is a header row. To set the number of header rows, use headerRowCount
on the Table object.
isHeader?: boolean;
Property Value
boolean
Remarks
parentTable
For EACH ITEM in the collection: Gets parent table.
parentTable?: Word.Interfaces.TableLoadOptions;
Property Value
Remarks
preferredHeight
For EACH ITEM in the collection: Specifies the preferred height of the row in points.
preferredHeight?: boolean;
Property Value
boolean
Remarks
rowIndex
For EACH ITEM in the collection: Gets the index of the row in its parent table.
rowIndex?: boolean;
Property Value
boolean
Remarks
shadingColor
For EACH ITEM in the collection: Specifies the shading color. Color is specified in "#RRGGBB" format or by using the color name.
shadingColor?: boolean;
Property Value
boolean
Remarks
values
For EACH ITEM in the collection: Specifies the text values in the row, as a 2D JavaScript array.
values?: boolean;
Property Value
boolean
Remarks
verticalAlignment
For EACH ITEM in the collection: Specifies the vertical alignment of the cells in the row. The value can be 'Top', 'Center', or 'Bottom'.
verticalAlignment?: boolean;
Property Value
boolean
Remarks
Office Add-ins