1 write to _unitType
PresentationFramework (1)
src\Framework\System\Windows\Controls\DataGridLength.cs (1)
113_unitType = type;
8 references to _unitType
PresentationFramework (8)
src\Framework\System\Windows\Controls\DataGridLength.cs (8)
189return (int)_unitValue + (int)_unitType + (int)_desiredValue + (int)_displayValue; 200return _unitType == DataGridLengthUnitType.Pixel; 212return _unitType == DataGridLengthUnitType.Auto; 224return _unitType == DataGridLengthUnitType.Star; 233get { return _unitType == DataGridLengthUnitType.SizeToCells; } 241get { return _unitType == DataGridLengthUnitType.SizeToHeader; } 251return (_unitType == DataGridLengthUnitType.Auto) ? AutoValue : _unitValue; 262return _unitType;