Rect.Parse(String) Method

Definition

Creates a new rectangle from the specified string representation.

C#
public static System.Windows.Rect Parse(string source);

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.

C#
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;
}

Applies to

Produkt Verzie
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10