Converts this object to another type via an explicit cast.
Syntax

[C#]

static Point operator explicit (PointF point);
static SizeF operator explicit (PointF point);

[Visual Basic]

Shared Function Operator Explicit (point As PointF) As Point
Shared Function Operator Explicit (point As PointF) As SizeF
Params
Name Description
point The point to convert. Floating point values will be rounded to the nearest integer.
Notes

None.

Example

None.