Table of Contents

Enum LayoutStyle

Namespace
Terminal.Gui
Assembly
Terminal.Gui.dll

Indicates the LayoutStyle for the View.

If Absolute, the X, Y, Width, and Height objects are all absolute values and are not relative. The position and size of the view is described by Frame.

If Computed, one or more of the X, Y, Width, or Height objects are relative to the SuperView and are computed at layout time.

public enum LayoutStyle

Fields

Absolute = 0

Indicates the X, Y, Width, and Height objects are all absolute values and are not relative. The position and size of the view is described by Frame.

Computed = 1

Indicates one or more of the X, Y, Width, or Height objects are relative to the SuperView and are computed at layout time. The position and size of the view will be computed based on these objects at layout time. Frame will provide the absolute computed values.