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)
210
return ((int)_unitValue + (int)
_unitType
);
217
public bool IsAbsolute { get { return (
_unitType
== FigureUnitType.Pixel); } }
223
public bool IsAuto { get { return (
_unitType
== FigureUnitType.Auto); } }
228
public bool IsColumn { get { return (
_unitType
== FigureUnitType.Column); } }
233
public bool IsContent { get { return (
_unitType
== FigureUnitType.Content); } }
238
public bool IsPage { get { return (
_unitType
== FigureUnitType.Page); } }
243
public double Value { get { return ((
_unitType
== FigureUnitType.Auto) ? 1.0 : _unitValue); } }
248
public FigureUnitType FigureUnitType { get { return (
_unitType
); } }