ScrollableControl.DisplayRectangle Property

Definition

Gets the rectangle that represents the virtual display area of the control.

public:
 virtual property System::Drawing::Rectangle DisplayRectangle { System::Drawing::Rectangle get(); };
public override System.Drawing.Rectangle DisplayRectangle { get; }
member this.DisplayRectangle : System.Drawing.Rectangle
Public Overrides ReadOnly Property DisplayRectangle As Rectangle

Property Value

A Rectangle that represents the display area of the control.

Remarks

If the AutoScroll property is set to true, the DisplayRectangle property is the virtual size and position of the ScrollableControl control. For example, if the width and height of the ScrollableControl are both 100 pixels and the control contains controls that extend beyond its boundaries, DisplayRectangle represents the size the ScrollableControl needs to be to include the contained controls. Similarly, the X and Y properties of DisplayRectangle are relevant to the scroll position of the ScrollableControl.

Applies to

See also