Interface IViewZoneChangeAccessor

Expand description

An accessor that allows for zones to be added or removed.

interface IViewZoneChangeAccessor {
    addZone(zone: IViewZone): string;
    layoutZone(id: string): void;
    removeZone(id: string): void;
}

Methods§

§

addZone(zone: IViewZone): string

Create a new view zone.

§

layoutZone(id: string): void

Change a zone's position. The editor will rescan the afterLineNumber and afterColumn properties of a view zone.

§

removeZone(id: string): void

Remove a zone