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"。

傳回

產生的矩形。

範例

下列範例示範如何使用 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

適用於