6 references to MinWidth
PresentationCore (6)
Core\CSharp\MS\Internal\Ink\InkSerializedFormat\CustomAttributeSerializer.cs (1)
921if (Double.IsNaN(dVal) || dVal < DrawingAttributes.MinWidth || dVal > DrawingAttributes.MaxWidth)
Core\CSharp\MS\Internal\Ink\InkSerializedFormat\DrawingAttributeSerializer.cs (1)
442DrawingAttributes.MinHeight == DrawingAttributes.MinWidth);
Core\CSharp\MS\Internal\Ink\StylusShape.cs (1)
51if (Double.IsNaN(width) || Double.IsInfinity(width) || width < DrawingAttributes.MinWidth || width > DrawingAttributes.MaxWidth)
Core\CSharp\System\Windows\Ink\DrawingAttributes.cs (1)
200if (double.IsNaN(value) || value < MinWidth || value > MaxWidth)
Core\CSharp\System\Windows\Ink\Stroke2.cs (1)
224if (Double.IsNaN(diameter) || diameter < DrawingAttributes.MinWidth || diameter > DrawingAttributes.MaxWidth)
Core\CSharp\System\Windows\Ink\StrokeCollection2.cs (1)
79if (Double.IsNaN(diameter) || diameter < DrawingAttributes.MinWidth || diameter > DrawingAttributes.MaxWidth)