"shapes"
Writes pointers to all shapes within a panel to a variable.
Synopsis
dyn_shape shape.shapes();
Parameters
None
Description
This read-only propery writes a list of pointers to all shapes within the panel to a dyn_shape variable.
Shapes within a panel reference are not included.
Example
Writes pointers to all shapes into the logViewer.
main()
{
dyn_shape panelShapes;
panelShapes = this.shapes();
DebugN(panelShapes);
}
Assignment
Panel