StylusPoint.MinXY Field
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies the smallest valid value for a pair of (x, y) coordinates.
public: static initonly double MinXY;
public static readonly double MinXY;
staticval mutable MinXY : double
Public Shared ReadOnly MinXY As Double
Field Value
Examples
The following example ensures that the X property of the StylusPoint is set to a legal value.
if (x < StylusPoint.MinXY)
{
x = StylusPoint.MinXY;
}
else if (x > StylusPoint.MaxXY)
{
x = StylusPoint.MaxXY;
}
point.X = x;
If x < StylusPoint.MinXY Then
x = StylusPoint.MinXY
ElseIf x > StylusPoint.MaxXY Then
x = StylusPoint.MaxXY
End If
point.X = x
Applies to
Співпраця з нами на GitHub
Джерело цього вмісту можна знайти на GitHub, де також можна створювати й переглядати запитання та запити на внесення змін. Докладні відомості наведено в нашому посібнику для співавторів.