6 references to MaxHeight
PresentationCore (6)
MS\Internal\Ink\InkSerializedFormat\CustomAttributeSerializer.cs (1)
876
if ( Double.IsNaN(dVal) || dVal < DrawingAttributes.MinHeight || dVal > DrawingAttributes.
MaxHeight
)
MS\Internal\Ink\InkSerializedFormat\DrawingAttributeSerializer.cs (3)
431
Debug.Assert(DrawingAttributes.
MaxHeight
== DrawingAttributes.MaxWidth &&
434
if (heightOrWidth > DrawingAttributes.
MaxHeight
)
436
return DrawingAttributes.
MaxHeight
;
MS\Internal\Ink\StylusShape.cs (1)
54
if (Double.IsNaN(height) || Double.IsInfinity(height) || height < DrawingAttributes.MinHeight || height > DrawingAttributes.
MaxHeight
)
System\Windows\Ink\DrawingAttributes.cs (1)
171
if (double.IsNaN(value) || value < MinHeight || value >
MaxHeight
)