1 write to _unitType
PresentationFramework (1)
System\Windows\GridLength.cs (1)
106_unitType = type;
6 references to _unitType
PresentationFramework (6)
System\Windows\GridLength.cs (6)
178return ((int)_unitValue + (int)_unitType); 185public bool IsAbsolute { get { return (_unitType == GridUnitType.Pixel); } } 191public bool IsAuto { get { return (_unitType == GridUnitType.Auto); } } 197public bool IsStar { get { return (_unitType == GridUnitType.Star); } } 202public double Value { get { return ((_unitType == GridUnitType.Auto) ? 1.0 : _unitValue); } } 207public GridUnitType GridUnitType { get { return (_unitType); } }