LayoutPosition class
Enumeration that defines a position within layout element
Signature:
export declare abstract class LayoutPosition
Properties
Property | Modifiers | Type | Description |
---|---|---|---|
BottomLeft |
| (not declared) | |
BottomRight |
| (not declared) | |
Center |
| (not declared) | |
TopLeft |
| (not declared) | |
TopRight |
| (not declared) |
LayoutPosition.BottomLeft property
Signature:
static readonly BottomLeft = 2;
LayoutPosition.BottomRight property
Signature:
static readonly BottomRight = 3;
LayoutPosition.Center property
Signature:
static readonly Center = 4;
LayoutPosition.TopLeft property
Signature:
static readonly TopLeft = 0;
LayoutPosition.TopRight property
Signature:
static readonly TopRight = 1;
Updated 7 months ago