elements property
Iterator<GraphObject>
get
elements
This read-only property returns an iterator over the collection of the GraphObjects that this panel manages.
You can change the collection by calling #add, #insertAt, #remove, or #removeAt.
You can also get direct access to individual elements by calling #elt.
Implementation
_i3.Iterator<_i3.GraphObject> get elements => _i4.getProperty(
this,
'elements',
);
set
elements
(Iterator<GraphObject> value)
Implementation
set elements(_i3.Iterator<_i3.GraphObject> value) {
_i4.setProperty(
this,
'elements',
value,
);
}