resizeAdornmentTemplate property

Adornment? get resizeAdornmentTemplate

Gets or sets the adornment template used to create a resize handle Adornment for this part. This is used by the ResizingTool, ToolManager#resizingTool.

If an Adornment is supplied, it is normally a Panel.Spot panel that contains a Placeholder with some number of resize handles at the four corners or at the four side midpoints.

Implementation

_i3.Adornment? get resizeAdornmentTemplate => _i4.getProperty(
      this,
      'resizeAdornmentTemplate',
    );
set resizeAdornmentTemplate (Adornment? value)

Implementation

set resizeAdornmentTemplate(_i3.Adornment? value) {
  _i4.setProperty(
    this,
    'resizeAdornmentTemplate',
    value ?? _i5.undefined,
  );
}