FromLong

Point.FromLong method

Deconstruct a Point object packed into a long object to separate X and Y int values.

public static void FromLong(long packedPoint, out int x, out int y)
ParameterTypeDescription
packedPointInt64The Point object packed into one long value.
xInt32&The extracted from the packed Point X value.
yInt32&The extracted from the packed Point Y value.

See Also