8 references to Auto
PresentationFramework (8)
System\Windows\Documents\Figure.cs (2)
213
new FigureLength(1.0, FigureUnitType.
Auto
),
234
new FigureLength(1.0, FigureUnitType.
Auto
),
System\Windows\FigureLength.cs (4)
115
if ( type != FigureUnitType.
Auto
138
_unitValue = (type == FigureUnitType.
Auto
) ? 0.0 : value;
225
public bool IsAuto { get { return (_unitType == FigureUnitType.
Auto
); } }
245
public double Value { get { return ((_unitType == FigureUnitType.
Auto
) ? 1.0 : _unitValue); } }
System\Windows\FigureLengthConverter.cs (1)
192
case FigureUnitType.
Auto
:
System\Windows\Markup\XamlFigureLengthSerializer.cs (1)
274
new FigureUnitTypeStringConvert("auto", FigureUnitType.
Auto
),