"isRowHidden";

The attribute "isRowHidden" returns TRUE if the specified row is hidden.

Synopsis

getValue(string shape, "isRowHidden", int index, bool &state);

Parameters

Parameter Description
shape Name of the object
index The index of the row. The index starts at 0.
state TRUE= parameter state is TRUE when the specified row is hidden.

Return value

The function returns 0 when it was successfully executed.

Description

The attribute "isRowHidden" returns TRUE if the specified row is hidden.

Example

The following example first hides the second row and then returns TRUE if the second is hidden (the row Index starts at 0). To add rows, use the function "appendLines".

main(mapping event)
{
  TABLE1.hideRow(1);
}
main(mapping event)
{
  bool st;
  getValue("TABLE1", "isRowHidden", 1, st);
  DebugN("Row hidden:", st);
}

Assignment

Table