1 write to _unitType
PresentationFramework (1)
src\Framework\System\Windows\GridLength.cs (1)
112
_unitType
= type;
6 references to _unitType
PresentationFramework (6)
src\Framework\System\Windows\GridLength.cs (6)
185
return ((int)_unitValue + (int)
_unitType
);
192
public bool IsAbsolute { get { return (
_unitType
== GridUnitType.Pixel); } }
198
public bool IsAuto { get { return (
_unitType
== GridUnitType.Auto); } }
204
public bool IsStar { get { return (
_unitType
== GridUnitType.Star); } }
209
public double Value { get { return ((
_unitType
== GridUnitType.Auto) ? 1.0 : _unitValue); } }
214
public GridUnitType GridUnitType { get { return (
_unitType
); } }