Rect.Parse(String) Método

Definição

Cria um novo retângulo da representação da cadeia de caracteres especificada.

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

Parâmetros

source
String

A representação de cadeia de caracteres do retângulo, no formato "x, y, largura, altura".

Retornos

O retângulo resultante.

Exemplos

O exemplo a seguir mostra como usar o Parse método para converter uma representação de cadeia de caracteres de um retângulo em uma Rect estrutura.

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

Aplica-se a