"scriptables"
Gets all properties that are available for a shape.
Synopsis
getValue( string shape, "scriptables", dyn_string &results);
shape.scriptables();
Parameters
Parameter | Description |
---|---|
results | List of all properties that are available for the shape. |
Description
Returns the list of all available properties of a shape.
Example
Following example returns all properties for the ELLIPSE1 shape and prints them to the LogViewer.
main()
{
dyn_string results;
results = ELLIPSE1.scriptables();
DebugN(results);
}
Assignment
All widgets