Click to Rate and Give Feedback
MSDN
MSDN Library
.NET Development
System.Windows
Rect Structure
Rect Methods
 Parse Method
Collapse All/Expand All Collapse All
This page is specific to
Microsoft Visual Studio 11/.NET Framework 4.5

Other versions are also available for the following:
.NET Framework Class Library
Rect..::.Parse Method

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

Creates a new rectangle from the specified string representation.

Namespace:  System.Windows
Assembly:  WindowsBase (in WindowsBase.dll)
Visual Basic
Public Shared Function Parse ( _
	source As String _
) As Rect
C#
public static Rect Parse(
	string source
)
Visual C++
public:
static Rect Parse(
	String^ source
)
F#
static member Parse : 
        source:string -> Rect 

Parameters

source
Type: System..::.String
The string representation of the rectangle, in the form "x, y, width, height".

Return Value

Type: System.Windows..::.Rect
The resulting rectangle.

The following example shows how to use the Parse method to convert a string representation of a rectangle into a Rect structure.

Visual Basic
        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
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;

}

.NET Framework

Supported in: 4.5, 4, 3.5, 3.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Windows 8 Release Preview, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 SP2, Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

© 2012 Microsoft. All rights reserved. Terms of Use | Trademarks | Privacy Statement
Page view tracker