Gets the rectangle that represents the display area of the control.
Namespace:
System.Windows.Forms
Assembly:
System.Windows.Forms (in System.Windows.Forms.dll)
Visual Basic (Declaration)
<BrowsableAttribute(False)> _
Public Overridable ReadOnly Property DisplayRectangle As Rectangle
Dim instance As Control
Dim value As Rectangle
value = instance.DisplayRectangle
[BrowsableAttribute(false)]
public virtual Rectangle DisplayRectangle { get; }
[BrowsableAttribute(false)]
public:
virtual property Rectangle DisplayRectangle {
Rectangle get ();
}
public function get DisplayRectangle () : Rectangle
The DisplayRectangle property returns the client rectangle of the display area of the control. For the base control class, this is equal to the client rectangle. However, inheriting controls might want to change this if their client area differs from their display area. The display rectangle is the smallest Rectangle that encloses a control and is used to lay out controls.
Notes to Inheritors: When overriding the DisplayRectangle property in a derived class, use the base class's DisplayRectangle property to extend the base implementation. Alternatively, you must provide all the implementation.
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
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, 2.0, 1.1, 1.0
Reference