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)
213
return ((int)_unitValue + (int)
_unitType
);
220
public bool IsAbsolute { get { return (
_unitType
== FigureUnitType.Pixel); } }
226
public bool IsAuto { get { return (
_unitType
== FigureUnitType.Auto); } }
231
public bool IsColumn { get { return (
_unitType
== FigureUnitType.Column); } }
236
public bool IsContent { get { return (
_unitType
== FigureUnitType.Content); } }
241
public bool IsPage { get { return (
_unitType
== FigureUnitType.Page); } }
246
public double Value { get { return ((
_unitType
== FigureUnitType.Auto) ? 1.0 : _unitValue); } }
251
public FigureUnitType FigureUnitType { get { return (
_unitType
); } }