viewColumn property

ViewColumn? viewColumn

An optional view column in which the {@link NotebookEditornotebook editor} should be shown. The default is the {@link ViewColumn.Activeactive}. 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
    };