Point.Parse(String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Collaborer avec nous sur GitHub
La source de ce contenu se trouve sur GitHub, où vous pouvez également créer et examiner les problèmes et les demandes de tirage. Pour plus d’informations, consultez notre guide du contributeur.