Versions Compared

Key

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

...

When copying appearances, the following properties are copied: CellAlignment, CellColors, CellEditMode, CellFont, CellGridLines, CellMultilined, CellPadding, and CellProtection.

Example

Code Block
 // Copy from one cell to another single cell 
rv = Send_Message(Ctrl, "OLE.CopyAppearance", 1, 1, 2:@FM:2) 

 // Copy from one cell to a whole record of cells: record 2 
rv = Send_Message(Ctrl, "OLE.CopyAppearance", 1, 1, "All":@FM:2) 

 // Copy from one cell to a range of cells: (2, 2) - (5, 5) 
rv = Send_Message(Ctrl, "OLE.CopyAppearance", 1, 1, "2-5":@FM:"2-5")

...