Returns the maximum X and Y components of two points
Namespace:
Eto.Drawing
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public static Point Max(
Point point1,
Point point2
)
Public Shared Function Max (
point1 As Point,
point2 As Point
) As Point
static member Max :
point1 : Point *
point2 : Point -> Point
Parameters
- point1
- Type: Eto.DrawingPoint
First point - point2
- Type: Eto.DrawingPoint
Second point
Return Value
Type:
PointA new point with the maximum X and Y values of the two points
See Also