Versions Compared

Key

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

...

When merging header cells, the indices of this proeprty property refer to the cell that is to become a Master Cell of a merged set. The value indicates the size of the merged header cell in cell units. For example, to merge a header cell with the header cell next to it, you want to set the header cell's HeaderMerge property to 2:@FM:1. This is the same as saying that the header cell is now 2 cells wide and 1 cell tall.

Code Block
 * Merge header cell (1, 1) with the header cell next to it 
Set_Property(@Window:".OLE_EDITTABLE", "OLE.HeaderMerge[1; 1]", 2:@FM:1)

...