Rect.Parse(String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Creates a new rectangle from the specified string representation.
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
Parameters
- source
- String
The string representation of the rectangle, in the form "x, y, width, height".
Returns
The resulting rectangle.
Examples
The following example shows how to use the Parse method to convert a string representation of a rectangle into a Rect structure.
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
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.