Rect.Parse(String) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
根据指定的字符串表示形式创建新的矩形。
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