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
languagebp
Set_Property(OLECtrlEntID, "OLE.ItemFields[ItemKey]", Array)

 

Values

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

...

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@VM:"MY_REPORT_WINDOW"
Fields<2> = "REPORT" :@FM@VM:"INVOICES"
Set_Property(@Window:".OLE_TREE", "OLE.ItemFields[INVOICE_REPORT]", Fields)

...