WebView.LayoutDirections

From Xojo Documentation

Enumeration
WebView.LayoutDirections

New in 2020r1

The direction in which container controls added at runtime should wrap when a WebView's LayoutType is set to Flow.

Values

Enum Description
BottomToTop The containers will be laid out starting in the bottom-left corner with each new one above the previous until no more will fit. Subsequent columns will be added to the right of the previous one.
LeftToRight The containers will be laid out starting in the top-left corner with each new one to the right of the previous until no more will fit. Subsequent rows will be added to below the previous one.
RightToLeft The containers will be laid out starting in the top-right corner with each new one to the left of the previous until no more will fit. Subsequent rows will be added to below the previous one.
TopToBottom The containers will be laid out starting in the top-left corner with each new one below the previous until no more will fit. Subsequent columns will be added to the right of the previous one.

Compatibility

Web projects on Linux, macOS and Windows operating systems.

See Also

LayoutDirection and LayoutType properties.