8 references to Auto
PresentationFramework (8)
System\Windows\Documents\Figure.cs (2)
211
new FigureLength(1.0, FigureUnitType.
Auto
),
232
new FigureLength(1.0, FigureUnitType.
Auto
),
System\Windows\FigureLength.cs (4)
114
if ( type != FigureUnitType.
Auto
137
_unitValue = (type == FigureUnitType.
Auto
) ? 0.0 : value;
224
public bool IsAuto { get { return (_unitType == FigureUnitType.
Auto
); } }
244
public double Value { get { return ((_unitType == FigureUnitType.
Auto
) ? 1.0 : _unitValue); } }
System\Windows\FigureLengthConverter.cs (1)
186
case FigureUnitType.
Auto
:
System\Windows\Markup\XamlFigureLengthSerializer.cs (1)
265
new FigureUnitTypeStringConvert("auto", FigureUnitType.
Auto
),