version 1.5
Property Set/Get Cells (r As Integer, c As Integer) As rtCell
Returns a cell indexed by row and column. In case the cell does not exist it gets created along with corresponding rows and columns as necessary. Thus if you retrieve 3x4 table and use statement:
set theCell = table.Cells (5,6)
the table gets appended 2 empty rows and 2 columns and becomes 5x6 table. To loop through all cells and make sure you retrieve only existing cells, you may use either RowCount and ColumnCount properties of
rtTable (respectively
rtColumn and
rtRow class objects), or use loop like:
Forall r in table
Forall c in r
... do something to the cell
End Forall
End Forall
Table - vertical alignment in cell
Sort text (II) - bar chart
Table processing - tabbed table
Simple table - bars
Table with rulers
Quick table
Simple table
Table processing - check for Merged cells
Table - Merged cells
Table, create a tabbed table
|