Versions Compared

Key

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

...

This property only affects the cell currently in edit mode. If no cell is in edit mode, then setting this property does nothing and getting this property returns FALSE.

Example

Code Block
 // Set the currently edited cell to modified 
Set_Property(@Window:".OLE_EDITTABLE", "OLE.Modified", 1) 

 // Get the modified state of the edited cell 
IsModified = Get_Property(@Window:".OLE_EDITTABLE", "OLE.Modified")

...