Skip to content

tWidgetConfigPropValue

See Also: tWidgetDef, tWidgetConfigProp, tWidgetConfigPropSettings, Declaring Variables, Struct

Purpose

tWidgetConfigPropValue is a structured type that is used to represent information about a cWebWidget configurable property.

Type Declaration

Struct tWidgetConfigPropValue
    String sObjName
    String sPropName
    String sValue
End_Struct

Struct Members

  • sObjName
    Name of the object (inside the Widget) this configurable property belongs to. Leave blank to specify this Widget’s root.

  • sPropName
    Name of the property this configurable property belongs to.

  • sValue
    (current) Value of the property.

Syntax

Use WebWidgetStructs.pkg
:
tWidgetConfigPropValue {variableName}

Declaring Variables

To declare tWidgetConfigPropValue variables, use the name of the type (tWidgetConfigPropValue) followed by the variable name.

tWidgetConfigPropValue wcpvValuesOne

See struct variables for more details on instantiating struct types.