Versions Compared

Key

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

...

Sets a value or group of values into the property panel, based on the property or property list.

Usage

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

...

Values

PosNameDescription
<x, 1>
PropertyOne 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.

Usage

Code Block
SRP_PropertyPanel(PanelCtrl, "GetValue", Property)

Parameters

Property

A key to the property value to retrieve.


...

GetKeys

Gets a an field-marked list of all the keys/properties associated with the current panel.

...

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


...

RollUpAll

Rolls up all the properties in the panel.

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


...

UnRollAll

Unrolls all the properties in the panel.


...

Examples