Rect.Parse(String) Metoda
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Tworzy nowy prostokąt na podstawie określonej reprezentacji ciągu.
public:
static System::Windows::Rect Parse(System::String ^ source);
public static System.Windows.Rect Parse (string source);
static member Parse : string -> System.Windows.Rect
Public Shared Function Parse (source As String) As Rect
Parametry
- source
- String
Reprezentacja ciągu prostokąta w postaci "x, y, width, height".
Zwraca
Wynikowy prostokąt.
Przykłady
W poniższym przykładzie pokazano, jak za pomocą Parse metody przekonwertować reprezentację ciągu prostokąta Rect na strukturę.
private Rect parseExample()
{
// Converts a string representation of a Rect into a Rect structure
// using the Parse static method.
Rect resultRect = Rect.Parse("10,5, 200,50");
return resultRect;
}
Private Function parseExample() As Rect
' Converts a string representation of a Rect into a Rect structure
' using the Parse static method.
Dim resultRect As Rect = Rect.Parse("10,5, 200,50")
Return resultRect
End Function