Versions Compared

Key

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

...

By default, whenever a cell is set to be a "Combo" type cell, it's CellComboSelPos value is reset to 0. Therefore, you are responsible for initializing this property for each combo box cell if you so desire.

Example

Code Block
 // Get the first cell's combo box sel pos 
ComboSelPos = Get_Property(@Window:".OLE_EDITTABLE", "OLE.CellComboSelPos[1; 1]") 

 // Change the first cell's combo box sel pos programmtically to 2 
Set_Property(@Window:".OLE_EDITTABLE", "OLE.CellComboSelPos[1; 1]", 2)

...