OnGetConfigurableProps - cWebWidget
Use this event to mark which properties in your WebWidget are configurable by filling the provided ByRef Array
Type: Event
Parameters
| Parameter | Type | Description |
|---|---|---|
| ByRef aConfigurableProps | tWidgetConfigProp[] | To be filled with tWidgetConfigProp struct instances |
Syntax
Procedure OnGetConfigurableProps ByRef tWidgetConfigProp[] aConfigurableProps
Description
Called by GetConfigurableProps. Use this event to mark which properties in your WebWidget are configurable by filling the provided ByRef Array. You can use CreateConfigurableProp for convenience to create the base structs.
Procedure OnGetConfigurableProps tWidgetConfigProp[] ByRef aConfigurableProps
Forward Send OnGetConfigurableProps (&aConfigurableProps)
Get CreateConfigurableProp Self (RefFunc(psAction)) to aConfigurableProps[-1]
End_Procedure