w:gridCol (Grid Column)
Specifies the preferred width of a single column in the table grid (in twentieths of a point).
Parent elements
Description
w:gridCol defines the width of a single logical table column within w:tblGrid. It is defined in ECMA-376 Part 1 §17.4.16.
Each w:gridCol corresponds to one column position. Cell elements span one or more grid columns via w:gridSpan.
Attributes
| Attribute | Type | Possible Values | Description |
|---|---|---|---|
w:w |
ST_TwipsMeasure |
Non-negative integer in twips (1/1440 in). E.g. 1440 = 1 inch. |
The width of this grid column. |
Examples
<w:tblGrid>
<w:gridCol w:w="1440"/>
<w:gridCol w:w="4320"/>
</w:tblGrid>
new TableGrid(
new GridColumn { Width = "1440" },
new GridColumn { Width = "4320" });