1 write to GridUnitType
Microsoft.Maui (1)
Primitives\GridLength.cs (1)
58
GridUnitType
= type;
9 references to GridUnitType
Microsoft.Maui (9)
Layouts\GridLayoutManager.cs (2)
215
columnGridLengthType |= ToGridLengthType(_columns[columnIndex].GridLength.
GridUnitType
);
225
rowGridLengthType |= ToGridLengthType(_rows[rowIndex].GridLength.
GridUnitType
);
Primitives\GridLength.cs (7)
29
get { return
GridUnitType
== GridUnitType.Absolute; }
35
get { return
GridUnitType
== GridUnitType.Auto; }
41
get { return
GridUnitType
== GridUnitType.Star; }
69
return
GridUnitType
== other.
GridUnitType
&& Math.Abs(Value - other.Value) < double.Epsilon;
75
return
GridUnitType
.GetHashCode() * 397 ^ Value.GetHashCode();
86
return string.Format("{0}.{1}", Value,
GridUnitType
);