Vector.Parse(String) Method

Definition

Converts a string representation of a vector into the equivalent Vector structure.

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

Parameters

source
String

The string representation of the vector.

Returns

The equivalent Vector structure.

Examples

The following example shows how to use this method to convert a string representation of a vector into a Vector structure.

private Vector parseExample()
{

    // Convert string into a Vector structure.
    // vectorResult is equal to (1,3)
    Vector vectorResult = Vector.Parse("1,3");

    return vectorResult;
}
Private Function parseExample() As Vector

    ' Convert string into a Vector structure.
    ' vectorResult is equal to (1,3)
    Dim vectorResult As Vector = Vector.Parse("1,3")

    Return vectorResult

End Function

Applies to

See also