1 write to _unitType
PresentationFramework (1)
System\Windows\Controls\DataGridLength.cs (1)
109_unitType = type;
8 references to _unitType
PresentationFramework (8)
System\Windows\Controls\DataGridLength.cs (8)
184return (int)_unitValue + (int)_unitType + (int)_desiredValue + (int)_displayValue; 195return _unitType == DataGridLengthUnitType.Pixel; 207return _unitType == DataGridLengthUnitType.Auto; 219return _unitType == DataGridLengthUnitType.Star; 228get { return _unitType == DataGridLengthUnitType.SizeToCells; } 236get { return _unitType == DataGridLengthUnitType.SizeToHeader; } 246return (_unitType == DataGridLengthUnitType.Auto) ? AutoValue : _unitValue; 257return _unitType;