1 write to _unitType
PresentationFramework (1)
System\Windows\FigureLength.cs (1)
138_unitType = type;
8 references to _unitType
PresentationFramework (8)
System\Windows\FigureLength.cs (8)
211return ((int)_unitValue + (int)_unitType); 218public bool IsAbsolute { get { return (_unitType == FigureUnitType.Pixel); } } 224public bool IsAuto { get { return (_unitType == FigureUnitType.Auto); } } 229public bool IsColumn { get { return (_unitType == FigureUnitType.Column); } } 234public bool IsContent { get { return (_unitType == FigureUnitType.Content); } } 239public bool IsPage { get { return (_unitType == FigureUnitType.Page); } } 244public double Value { get { return ((_unitType == FigureUnitType.Auto) ? 1.0 : _unitValue); } } 249public FigureUnitType FigureUnitType { get { return (_unitType); } }