Versions Compared

Key

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

...

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

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

<x, 3>
NamePropertyName(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

...

FieldDescriptionDefault
<1>Headers & Gridlinesdefaults to a light grays, RGB(240,240,240) 
<2>Selectiondefaults to "Select"
<3>Backgrounddefaults to "White"


...

SetValue

Sets a value into the property panel, based on the property key and value provided.

Code Block
SRP_PropertyPanel(PanelCtrl, "SetValues", PropertyKey, Value)

PropertyKey

A property currently assigned in the property panel; referenced by its key.

Value

The value to assign to the above property (conversion settings apply).


...

SetValues

Sets a Sets a value or group of values into the property panel, based on the property or property listkeys and values provided in a list format.

Code Block
SRP_PropertyPanel(PanelCtrl, "SetValues", Values)

Values

PosNameDescription
<x, 1>
PropertyPropertyKeyOne of the properties currently in the panel; referenced by its key name.
<x, 2>
ValueThe value to assign to the above property (conversion settings apply).

...

Gets a property value based on the provided key.

Code Block
rv = SRP_PropertyPanel(PanelCtrl, "GetValue", PropertyPropertyKey)

...

PropertyKey

A key to the property value to retrieve.

...