Table of Contents

Enum Justification

Namespace
Terminal.Gui
Assembly
Terminal.Gui.dll

Controls how the Justifier justifies items within a container.

public enum Justification

Fields

Centered = 2

The group will be centered in the container. If centering is not possible, the group will be left-justified. Set PutSpaceBetweenItems to true to ensure at least one space between each item.

FirstLeftRestRight = 4

The first item will be aligned to the left and the remaining will aligned to the right. Set PutSpaceBetweenItems to true to ensure at least one space between each item.

Justified = 3

The items will be justified. Space will be added between the items such that the first item is at the start and the right side of the last item against the end. Set PutSpaceBetweenItems to true to ensure at least one space between each item.

LastRightRestLeft = 5

The last item will be aligned to the right and the remaining will aligned to the left. Set PutSpaceBetweenItems to true to ensure at least one space between each item.

Left = 0

The items will be aligned to the left. Set PutSpaceBetweenItems to true to ensure at least one space between each item.

Right = 1

The items will be aligned to the right. Set PutSpaceBetweenItems to true to ensure at least one space between each item.