Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

ValueDescription
rowShadethe Boolean status of the control’s rowshade.
existingStatethe Boolean status of the control’s rowshade, when Set_Property was run.

See Also

EVENROWCOLOR PropertyODDROWCOLOR Property

Example

Code Block
Declare function Get_Property, Set_Property
 
/* retrieve the ROWSHADE property of the TABLE_1 control and if true set to false and vice versa. */
 
rowShade = Get_Property(@window:'.TABLE_1','ROWSHADE')
if rowShade then
   newShade = 0
end else
    newShade = 1
end
existingRowShade = Set_Property(@window:'.TABLE_1','ROWSHADE',newShade)