PointHelper
PointHelper
PointHelper
PointHelper
Class
Definition
public : sealed class PointHelper : IPointHelperpublic sealed class PointHelper : IPointHelperPublic NotInheritable Class PointHelper Implements IPointHelper// This API is not available in Javascript.
- Attributes
| Device family |
Windows 10 (introduced v10.0.10240.0)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v1)
|
Remarks
Point is a Windows Runtime structure that represents an X,Y position in a coordinate system. A Point is used as a value in many different Windows Runtime API.
PointHelper is one of several Helper classes that are intended to provide utility methods for Windows Runtime structure values. C# and Microsoft Visual Basic code can use members of Point instead, because utility members are available directly on the structure due to .NET Framework runtime support. C++ code can only access the X and Y data values on Point. For C++ developers, approximately the same utility features that a Microsoft Visual Basic developer could use directly on Point are available in a static form on the PointHelper class.
Methods
FromCoordinates(Single, Single) FromCoordinates(Single, Single) FromCoordinates(Single, Single) FromCoordinates(Single, Single)
Creates a new Point value using x- and y-coordinate values in pixels. C# and Microsoft Visual Basic code should use Point(Double,Double) instead.
public : static Point FromCoordinates(float x, float y)public static Point FromCoordinates(Single x, Single y)Public Static Function FromCoordinates(x As Single, y As Single) As Point// This API is not available in Javascript.
- x
- float Single Single Single
The pixel value to set for X.
- y
- float Single Single Single
The pixel value to set for Y.