"showRow", "hideRow"
The attribute "showRow" shows a row of a table. The attribute "hideRow" hides a row.
Synopsis
setValue(string shape, "showRow", int index);
setValue(string shape, "hideRow", int index);
shape.showRow(int index);
shape.hideRow(int index);
Parameters
Parameter | Description |
---|---|
shape | Name of the object |
index | The index of the row |
Description
The attribute "showRow" shows a row of a table. The attribute "hideRow" hides a row.
Example
The following example shows the second row of the table and hides the third.
Hidden rows will not be shown when the table is sorted in ascending or descending order but remain hidden. Hidden rows can be shown using showRow only when the sort sequence for the table is again as before.
main()
{
TABLE1.showRow(1);
TABLE1.hideRow(2);
}
Assignment
Table