Versions Compared

Key

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

All user defined values associated to an item.

Usage

Code Block
language
 code
bp
Set_Property(OLECtrlEntID, "OLE.ItemFields[ItemKey]", Array)
 

Values

An @FM delimited array of key/value pairs. Each field has the following structure:

...

Note also that user defined fields can be used in any property that supports Conditions.

Example

Code Block
languagebp
// Associate the Reports window to an item called reports by adding a field
// called WINDOW and passing the window name as the value.
Fields = ""
Fields<1> = "WINDOW":@FM:"MY_REPORT_WINDOW"
Fields<2> = "REPORT" :@FM:"INVOICES"
Set_Property(@Window:".OLE_TREE", "OLE.ItemFields[INVOICE_REPORT]", Fields)

...