1 write to _unitType
PresentationFramework (1)
System\Windows\FigureLength.cs (1)
139
_unitType
= type;
8 references to _unitType
PresentationFramework (8)
System\Windows\FigureLength.cs (8)
212
return ((int)_unitValue + (int)
_unitType
);
219
public bool IsAbsolute { get { return (
_unitType
== FigureUnitType.Pixel); } }
225
public bool IsAuto { get { return (
_unitType
== FigureUnitType.Auto); } }
230
public bool IsColumn { get { return (
_unitType
== FigureUnitType.Column); } }
235
public bool IsContent { get { return (
_unitType
== FigureUnitType.Content); } }
240
public bool IsPage { get { return (
_unitType
== FigureUnitType.Page); } }
245
public double Value { get { return ((
_unitType
== FigureUnitType.Auto) ? 1.0 : _unitValue); } }
250
public FigureUnitType FigureUnitType { get { return (
_unitType
); } }