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)
185return ((int)_unitValue + (int)_unitType); 192public bool IsAbsolute { get { return (_unitType == GridUnitType.Pixel); } } 198public bool IsAuto { get { return (_unitType == GridUnitType.Auto); } } 204public bool IsStar { get { return (_unitType == GridUnitType.Star); } } 209public double Value { get { return ((_unitType == GridUnitType.Auto) ? 1.0 : _unitValue); } } 214public GridUnitType GridUnitType { get { return (_unitType); } }