Versions Compared

Key

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

...

The means to initially configure and display the property panel.

Usage

Code Block
SRP_PropertyPanel(PanelCtrl, "Init", ItemList, ColWidth, Colors)

...

ItemList

PosNameDescriptionDefault
<x, 1>
LevelThe item's level in the panel; 1 is the group, 2 is the property

<x, 2>
KeyThe key to each property; must be unique

<x, 3>
Name(Optional) The text label to use as the property name
Key
<x, 4>
Type

(Optional) The type of entry / type of cell

"B" - two boolean values

"C" - custom dropdown list

"D" - date / calendar dropdown

"X" - checkbox


<x, 5>
Conversion(Optional) Oconv during panel entry SVM Iconv for get/set value
<x, 6>
DropList(Optional) SVM list for boolean or custom dropdowns
<x, 7>
ValueAny value to pre-fill into the data section

...

Code Block
List = SRP_PropertyPanel(PanelCtrl, "GetKeysRollUpAll")


...

UnRollAll

Unrolls all the properties in the panel.

Code Block
List = SRP_PropertyPanel(PanelCtrl, "UnRollAll")


...

Examples