Rect.Parse(String) メソッド

定義

指定した文字列形式から新しい四角形を作成します。

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

パラメーター

source
String

"x, y, width, height" の形式の四角形の文字列形式。

戻り値

Rect

結果として得られる四角形。

次の例は、このメソッドを Parse 使用して四角形の文字列形式を構造体に変換する方法を Rect 示しています。

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

適用対象