Last updated

API / geotoolkit / layout / RegularGridLayout / ContainerDirection

Enumeration: ContainerDirection

layout.RegularGridLayout.ContainerDirection

Enum of mutual columns and rows positions in the layout

Example

import {ContainerDirection} from '@int/geotoolkit/layout/RegularGridLayout';
// Elements in the layout array go column-by-column:
const direction1 = ContainerDirection.Vertical;

// Elements in the layout array go row-by-row:
const direction2 = ContainerDirection.Vertical;

Table of contents

Enumeration Members

Contents

Enumeration Members

Horizontal

Horizontal = "horizontal"

Elements in the layout array go row-by-row.


Vertical

Vertical = "vertical"

Elements in the layout array go column-by-column.