Table of Contents

Enum DimAlignments

Namespace
RichHudFramework.UI
Assembly
RichHudClient.dll

Automatic size matching flags for DimAlignment

[Flags]
public enum DimAlignments : byte

Fields

None = 0

No size matching

Width = 1

Match parent width

Height = 2

Match parent height

Both = Width | Height

Match parent size

Size = Width | Height

Match parent size

IgnorePadding = 4

Matches parent size less padding

UnpaddedWidth = Width | IgnorePadding

Match parent width less padding

UnpaddedHeight = Height | IgnorePadding

Match parent height less padding

UnpaddedSize = Width | UnpaddedHeight

Match parent size less padding