8 references to Auto
PresentationFramework (8)
System\Windows\Documents\Figure.cs (2)
210
new FigureLength(1.0, FigureUnitType.
Auto
),
231
new FigureLength(1.0, FigureUnitType.
Auto
),
System\Windows\FigureLength.cs (4)
113
if ( type != FigureUnitType.
Auto
136
_unitValue = (type == FigureUnitType.
Auto
) ? 0.0 : value;
222
public bool IsAuto { get { return (_unitType == FigureUnitType.
Auto
); } }
242
public double Value { get { return ((_unitType == FigureUnitType.
Auto
) ? 1.0 : _unitValue); } }
System\Windows\FigureLengthConverter.cs (1)
185
case FigureUnitType.
Auto
:
System\Windows\Markup\XamlFigureLengthSerializer.cs (1)
264
new FigureUnitTypeStringConvert("auto", FigureUnitType.
Auto
),