Point.Parse(String) Метод

Определение

Создает Point из заданного 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

Параметры

source
String

Строковое представление точки.

Возвращаемое значение

Point

Эквивалентная структура Point.

Исключения

source не состоит из двух разделенных запятой или пробелом значений типа double.

source не содержит два числа.

-или- source содержит слишком много разделителей.

Примеры

В следующем примере показано, как использовать Parse метод для преобразования String представления точки в структуру Point .

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

Применяется к