Point.Parse(String) Method

Definition

Constructs a Point from the specified String.

public:
 static System::Windows::Point Parse(System::String ^ source);
public static System.Windows.Point Parse (string source);
static member Parse : string -> System.Windows.Point
Public Shared Function Parse (source As String) As Point

Parameters

source
String

A string representation of a point.

Returns

The equivalent Point structure.

Exceptions

source is not composed of two comma- or space-delimited double values.

source does not contain two numbers.

-or-

source contains too many delimiters.

Examples

The following example shows how to use the Parse method to convert a String representation of a point into a Point structure.

private Point parseExample()
{

    // Converts a string representation of a point into a Point structure
    // using the Parse static method.
    // pointResult is equal to (1,3).
    Point pointResult = Point.Parse("1,3");

    return pointResult;
}
Private Function parseExample() As Point

    ' Converts a string representation of a point into a Point structure
    ' using the Parse static method.
    ' pointResult is equal to (1,3).
    Dim pointResult As Point = Point.Parse("1,3")

    Return pointResult

End Function

Applies to