6 references to MaxHeight
PresentationCore (6)
Core\CSharp\MS\Internal\Ink\InkSerializedFormat\CustomAttributeSerializer.cs (1)
914
if ( Double.IsNaN(dVal) || dVal < DrawingAttributes.MinHeight || dVal > DrawingAttributes.
MaxHeight
)
Core\CSharp\MS\Internal\Ink\InkSerializedFormat\DrawingAttributeSerializer.cs (3)
441
Debug.Assert(DrawingAttributes.
MaxHeight
== DrawingAttributes.MaxWidth &&
444
if (heightOrWidth > DrawingAttributes.
MaxHeight
)
446
return DrawingAttributes.
MaxHeight
;
Core\CSharp\MS\Internal\Ink\StylusShape.cs (1)
56
if (Double.IsNaN(height) || Double.IsInfinity(height) || height < DrawingAttributes.MinHeight || height > DrawingAttributes.
MaxHeight
)
Core\CSharp\System\Windows\Ink\DrawingAttributes.cs (1)
173
if (double.IsNaN(value) || value < MinHeight || value >
MaxHeight
)