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)
181return ((int)_unitValue + (int)_unitType); 188public bool IsAbsolute { get { return (_unitType == GridUnitType.Pixel); } } 194public bool IsAuto { get { return (_unitType == GridUnitType.Auto); } } 200public bool IsStar { get { return (_unitType == GridUnitType.Star); } } 205public double Value { get { return ((_unitType == GridUnitType.Auto) ? 1.0 : _unitValue); } } 210public GridUnitType GridUnitType { get { return (_unitType); } }