rtTable | ||
![]() rtRow rtTable ![]() BeginInsert BorderStyle As rtBorderStyle Cells As rtCell ColumnCount Columns As rtColumn ColumnSpacing dropShadow Flags HTML HTMLStyle As rtHtmlStyle ID LayoutStyle As rtTableStyle parentParagraph Parent ParentContainer ParentObject root RowCount RowDisplayStyle As rtRowDisplayStyle Rows As rtRow RowSpacing Style TableID useBorderColor Values
| version 1.5
Representation of a table. May also be used also as an embedded table - you only need to add it to the content of the cell ( rtCell). The style property returns the rtStyle object. It may contain Borders ( rtBorderStyle), TableLayout ( rtTableStyle), RowDisplay ( rtRowDisplayStyle) and HTML ( rtHtmlStyle) style elements. The number of columns and rows can be managed using appendColumn/removeColumn, appendRow/removeRow methods. Cells are accessed through column or row or referencing a cell directly. Referencing a non-existent column, row or cell creates it (along with other columns and rows as implied). Method mergeCells is used to span or merge cells. The cells in merged region are still counted and may be accessed, although only the rightmost bottom cell may contain any displayable information. MergeCells method merges content of all spanned cells and puts it in the visible cell. TableID is used for programmable tables. This ID is included in field controlling the visible tab. Thus TableID = "robert" means that the field name will be "$robert". IsNested parameter is true if the table is embedded (in another table). UseBorder color and dropShadow works together with Borders property ( rtBorderStyle) properties. DropShadow may be used as a quick way to display default shadow. |