8 references to Auto
PresentationFramework (8)
src\Framework\System\Windows\Documents\Figure.cs (2)
213new FigureLength(1.0, FigureUnitType.Auto), 234new FigureLength(1.0, FigureUnitType.Auto),
src\Framework\System\Windows\FigureLength.cs (4)
118if ( type != FigureUnitType.Auto 139_unitValue = (type == FigureUnitType.Auto) ? 0.0 : value; 226public bool IsAuto { get { return (_unitType == FigureUnitType.Auto); } } 246public double Value { get { return ((_unitType == FigureUnitType.Auto) ? 1.0 : _unitValue); } }
src\Framework\System\Windows\FigureLengthConverter.cs (1)
203case FigureUnitType.Auto:
src\Framework\System\Windows\Markup\XamlFigureLengthSerializer.cs (1)
287new FigureUnitTypeStringConvert("auto", FigureUnitType.Auto),