itemTemplate property

Panel get itemTemplate

Gets or sets the default Panel template used as the archetype for item data that are in #itemArray.

Setting this property just modifies the #itemTemplateMap by replacing the entry named with the empty string. Any new value must be a Panel but not a Part. By default this property is null.

GraphObject#copy when copying a panel will share the #itemTemplateMap between the original panel and the copied panel.

Implementation

_i3.Panel get itemTemplate => _i4.getProperty(
      this,
      'itemTemplate',
    );
set itemTemplate (Panel value)

Implementation

set itemTemplate(_i3.Panel value) {
  _i4.setProperty(
    this,
    'itemTemplate',
    value,
  );
}