Enumeration of fill modes.
[Flags]
|
|||||
enum
|
Axis
|
The fill mode of a Component depicts how its size is adjusted to the dimensions of its layout grid cell in the parents container layout grid.
None
|
= 0
|
The component is not adjusted and is placed inside the grid cell according to its LayoutAlign. |
---|---|---|
Horizontal
|
= 0x01
|
The component width is set to the grid cell width. Vertical alignment is performed according to its LayoutAlign. |
Vertical
|
= 0x02
|
The component height is set to the grid cell height. Horizontal alignment is performed according to its LayoutAlign. |
Both
|
= 0x03
|
The component size is set to the size of the grid cell, i.e. it fills the entire cell. |