1 write to _unitType
PresentationFramework (1)
src\Framework\System\Windows\FigureLength.cs (1)
140_unitType = type;
8 references to _unitType
PresentationFramework (8)
src\Framework\System\Windows\FigureLength.cs (8)
213return ((int)_unitValue + (int)_unitType); 220public bool IsAbsolute { get { return (_unitType == FigureUnitType.Pixel); } } 226public bool IsAuto { get { return (_unitType == FigureUnitType.Auto); } } 231public bool IsColumn { get { return (_unitType == FigureUnitType.Column); } } 236public bool IsContent { get { return (_unitType == FigureUnitType.Content); } } 241public bool IsPage { get { return (_unitType == FigureUnitType.Page); } } 246public double Value { get { return ((_unitType == FigureUnitType.Auto) ? 1.0 : _unitValue); } } 251public FigureUnitType FigureUnitType { get { return (_unitType); } }