"gridType"
"gridType" specifies whether the column and row grid lines or both of a table will be shown or not.
Synopsis
setValue(string shape, "gridType", int type);
shape.gridType( int type);
Parameters
Parameter | Description |
---|---|
shape | Name of the object. |
type |
0 = No lines (column & row) 1 = Row lines are shown. 2 = Column lines are shown. The values 1 and 2 can be combined to show both row and column grid lines (see example 2 below). |
Description
gridType" specifies whether the column and row grid lines of a table will be shown or not.
Example 2
In the following example, the row and the column grid lines of the table will be shown.
main()
{
TABLE1.gridType(1|2);
}
Assignment
Table