6 references to MaxWidth
PresentationCore (6)
MS\Internal\Ink\InkSerializedFormat\CustomAttributeSerializer.cs (1)
867
if (Double.IsNaN(dVal) || dVal < DrawingAttributes.MinWidth || dVal > DrawingAttributes.
MaxWidth
)
MS\Internal\Ink\InkSerializedFormat\DrawingAttributeSerializer.cs (1)
421
Debug.Assert(DrawingAttributes.MaxHeight == DrawingAttributes.
MaxWidth
&&
MS\Internal\Ink\StylusShape.cs (1)
42
if (Double.IsNaN(width) || Double.IsInfinity(width) || width < DrawingAttributes.MinWidth || width > DrawingAttributes.
MaxWidth
)
System\Windows\Ink\DrawingAttributes.cs (1)
187
if (double.IsNaN(value) || value < MinWidth || value >
MaxWidth
)
System\Windows\Ink\Stroke2.cs (1)
194
if (Double.IsNaN(diameter) || diameter < DrawingAttributes.MinWidth || diameter > DrawingAttributes.
MaxWidth
)
System\Windows\Ink\StrokeCollection2.cs (1)
65
if (Double.IsNaN(diameter) || diameter < DrawingAttributes.MinWidth || diameter > DrawingAttributes.
MaxWidth
)