Versions Compared

Key

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

...

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

See Also

Set_Property() functionGet_Property() function

Example

 

Code Block
Declare function Get_Property, Set_Property

/* This snippet of code will check the current SYSTEM cursor and if it is an Hourglass will change the cursor to an Arrow.*/
 
cursor = Get_Property("SYSTEM","CURSOR")
if cursor _Eqc "H" then
  eCursor = Set_Property("SYSTEM","CURSOR","A")
end