Understanding cell properties

The following examples show how you can manipulate the property of a cell: the Numeric Format property of the cells A:A23.


Example 1

The following example gets the setting is stored in B:C32:

  {GETOBJECTPROPERTY B:C32,"A:A23.Numeric_Format"}   


Example 2

The following example formats the link command A:A23 as General:

  ON Init SET General TO A:A23.Numeric_Format   @PROPERTY("A:A23.Numeric_Format")   


Example 3

The following example formats A:A23 as Currency with 2 decimal places:

  SETOBJECTPROPERTY "A:A23.Numeric_Format","Currency,2"}   

Understanding cell properties