[]
GridLength is the type used for various length-like properties in the system, that explicitely support Star unit type. For example, "Width", "Height" properties of ColumnDefinition and RowDefinition used by Grid.
public class GridLength
| Name | Description |
|---|---|
| GridLength(double) | Constructor, initializes the GridLength as absolute value in pixels. |
| GridLength(double, GridUnitType) | Constructor, initializes the GridLength and specifies what kind of value it will hold. |
| Name | Description |
|---|---|
| Auto | Returns initialized Auto GridLength value. |
| IsAbsolute | Returns |
| IsAuto | Returns |
| IsStar | Returns |
| UnitType | Returns unit type of this GridLength instance. |
| Value | Returns value part of this GridLength instance. |