Versions Compared

Key

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

...

Unlike OI's SELECTION property, the EditSelection property is in the format Start:@FM:End whereas OI's SELECTION property is in the format Start:@FM:Length.

Example

Code Block
 // Select all the text of the currently edited cell 
Set_Property(@Window:".OLE_EDITTABLE", "OLE.EditSelection", 1:@FM:0) 

 // Remove the selections from the currently edited cell 
Set_Property(@Window:".OLE_EDITTABLE", "OLE.EditSelection", 0:@FM:1) 

 // Select only the first 3 characters of the currently edited cell 
Set_Property(@Window:".OLE_EDITTABLE", "OLE.EditSelection", 1:@FM:3) 

 // Select from the 3rd character to the end 
Set_Property(@Window:".OLE_EDITTABLE", "OLE.EditSelection", 3:@FM:0) 

 // Get the selection of the currently edited cell 
Selection = Get_Property(@Window:".OLE_EDITTABLE", "OLE.EditSelection")

...