Versions Compared

Key

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

...

If the HeaderRowCount property is greater than 1, then you must use @FM to separate rows of header titles.

Example

Code Block
 // Set the titles for a table with multiple rows to records 
Titles = "Title 1":@VM:"Title 2":@VM:"Title 3":@VM:"Title 4":@VM:"Title 5":@VM:"Title 6" 
Set_Property(@Window:".OLE_EDITTABLE", "OLE.TitleList", Titles) 

 // Set the titles for a table with HeaderRowCount set to 2 
Titles = "" 
Titles<1> = "Title 1, 1":@VM:"Title 1, 2":@VM:"Title 1, 3" 
Titles<2> = "Title 2, 1":@VM:"Title 2, 2":@VM:"Title 2, 3" 
Set_Property(@Window:".OLE_EDITTABLE", "OLE.TitleList", Titles)

...