Versions Compared

Key

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

...

SELPOS propertyCELLPOS property

Example

 
Code Block
To extract a row of data from an edit table:
row = Send_Message(CtrlEntID, "TEXT_BY_POS", 0, rownumber)
To extract a column of data from an edit table:
column=Send_Message(CtrlEntID, "TEXT_BY_POS", columnnumber,0)
To extract the data in column 3, row 4 of an edit table:
column=Send_Message(CtrlEntID, "TEXT_BY_POS", 3, 4)