scrollMode property

EnumValue get scrollMode

Gets or sets the scrollMode of the Diagram, allowing the user to either scroll to document bound borders with Diagram.DocumentScroll, or scroll endlessly with Diagram.InfiniteScroll.

The default value is Diagram.DocumentScroll. Changing this property value does not raise a Changed event.

Implementation

_i3.EnumValue get scrollMode => _i4.getProperty(
      this,
      'scrollMode',
    );
set scrollMode (EnumValue value)

Implementation

set scrollMode(_i3.EnumValue value) {
  _i4.setProperty(
    this,
    'scrollMode',
    value,
  );
}