Table Methods
Represents a single table.| Name | Description |
|---|---|
| BeginUpdate() |
Locks the Table object. Prevents visual updates until the EndUpdate method calls.
|
| Cell(Int32, Int32) | Provides access to a cell in a table. |
| EndUpdate() |
Unlocks the Table object after you call BeginUpdate. It also causes an immediate visual update.
|
| ForEachCell(TableCellProcessorDelegate) | Performs the specified action on each cell in the table. |
| ForEachRow(TableRowProcessorDelegate) | Enables you to specify a delegate which will be executed for each row of a table. |
| MakeWordCompatible() | Merges all columns with indexes greater than 63 into a single column. |
| MergeCells(TableCell, TableCell) | Merges the cells in the specified range into a single cell. |
| Reset() | Resets table properties to values specified by the underlying style or to the default style values. |
| Reset(TablePropertiesMask) | Resets the table properties specified by the mask to the properties of the underlying table style or to default properties. |
| SetPreferredWidth(Single, WidthType) | Specifies the preferred width for the table in specified units. |
| Validate() | Checks whether the current table instance is valid and usable. |
See Also