Rect.Parse(String) Metodo

Definizione

Crea un nuovo rettangolo dalla rappresentazione della stringa specificata.

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

Parametri

source
String

Rappresentazione della stringa del rettangolo, nel modulo "x, y, larghezza, altezza."

Restituisce

Rect

Rettangolo risultante.

Esempio

Nell'esempio seguente viene illustrato come usare il Parse metodo per convertire una rappresentazione stringa di un rettangolo in una Rect struttura.

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

Si applica a