Point::Parse Method (String^)

 

Constructs a Point from the specified String.

Namespace:   System.Windows
Assembly:  WindowsBase (in WindowsBase.dll)

public:
static Point Parse(
	String^ source
)

Parameters

source
Type: System::String^

A string representation of a point.

Return Value

Type: System.Windows::Point

The equivalent Point structure.

Exception Condition
FormatException

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

InvalidOperationException

source does not contain two numbers.

-or-

source contains too many delimiters.

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

No code example is currently available or this language may not be supported.

.NET Framework
Available since 3.0
Return to top
Show: