1 write to _unitType
PresentationFramework (1)
System\Windows\GridLength.cs (1)
108
_unitType
= type;
6 references to _unitType
PresentationFramework (6)
System\Windows\GridLength.cs (6)
181
return ((int)_unitValue + (int)
_unitType
);
188
public bool IsAbsolute { get { return (
_unitType
== GridUnitType.Pixel); } }
194
public bool IsAuto { get { return (
_unitType
== GridUnitType.Auto); } }
200
public bool IsStar { get { return (
_unitType
== GridUnitType.Star); } }
205
public double Value { get { return ((
_unitType
== GridUnitType.Auto) ? 1.0 : _unitValue); } }
210
public GridUnitType GridUnitType { get { return (
_unitType
); } }