ScrollableControl.ScrollControlIntoView Method (Control)

 

Scrolls the specified child control into view on an auto-scroll enabled control.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

member ScrollControlIntoView : 
        activeControl:Control -> unit

Parameters

activeControl
Type: System.Windows.Forms.Control

The child control to scroll into view.

The AutoScroll property must be set to true, and at least one of the scroll bars, horizontal or vertical, must also be visible, for the ScrollControlIntoView method to have an effect. To make the horizontal and vertical scroll bars visible, the HScroll and VScroll properties, respectively, must be set to true.

If the activeControl parameter is not a child control, no action takes place.

This method may raise the Scroll event.

The following code example enables auto-scrolling for a form, resizes the form, and ensures that a button remains visible after the form is resized. The example requires that you have a Form with a Button named button2 on it.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 1.1
Return to top
Show: