viewColumn property

ViewColumn? get viewColumn

An optional view column in which the {@link TextEditor editor} should be shown. The default is the {@link ViewColumn.Active active}. Columns that do not exist will be created as needed up to the maximum of {@linkcode ViewColumn.Nine}. Use {@linkcode ViewColumn.Beside} to open the editor to the side of the currently active one.

Implementation

_i3.ViewColumn? get viewColumn => switch (_i5.getProperty(
      this,
      'viewColumn',
    )) {
      _i2.String name => _i3.ViewColumn.values.byName(name),
      _ => null
    };
set viewColumn (ViewColumn? value)

Implementation

set viewColumn(_i3.ViewColumn? value) {
  _i5.setProperty(
    this,
    'viewColumn',
    value?.name ?? _i6.undefined,
  );
}