viewColumn property
ViewColumn
get
viewColumn
A view column in which the {@link Terminal terminal} should be shown in the editor area. 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 => _i3.ViewColumn.values.byName(_i5.getProperty(
this,
'viewColumn',
));
set
viewColumn
(ViewColumn value)
Implementation
set viewColumn(_i3.ViewColumn value) {
_i5.setProperty(
this,
'viewColumn',
value.name,
);
}