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

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

Creates a new rectangle from the specified string representation.

Namespace:  System.Windows
Assembly:  WindowsBase (in WindowsBase.dll)
Visual Basic (Declaration)
Public Shared Function Parse ( _
    source As String _
) As Rect
Visual Basic (Usage)
Dim source As String
Dim returnValue As Rect

returnValue = Rect.Parse(source)
C#
public static Rect Parse(
    string source
)
Visual C++
public:
static Rect Parse(
    String^ source
)
JScript
public static function Parse(
    source : String
) : Rect
XAML
You cannot use methods in XAML.

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.

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;

}

Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003

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

.NET Framework

Supported in: 3.5, 3.0
Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Processing
© 2012 Microsoft. All rights reserved. Terms of Use | Trademarks | Privacy Statement
Page view tracker