SplitContainer.AutoScrollMargin Property

Definition

Gets or sets the size of the auto-scroll margin. This property is not relevant to this class. This property is not relevant to this class.

public:
 property System::Drawing::Size AutoScrollMargin { System::Drawing::Size get(); void set(System::Drawing::Size value); };
[System.ComponentModel.Browsable(false)]
public System.Drawing.Size AutoScrollMargin { get; set; }
[<System.ComponentModel.Browsable(false)>]
member this.AutoScrollMargin : System.Drawing.Size with get, set
Public Property AutoScrollMargin As Size

Property Value

A Size value that represents the height and width, in pixels, of the auto-scroll margin.

Attributes

Remarks

The auto-scroll margin is the distance between any child controls and the edges of the scrollable parent control. The AutoScrollMargin size is added to the size of any child controls contained in the scrollable control to determine if scroll bars are needed. The AutoScrollMargin property is evaluated when the parent scrollable control is resized or the individual child controls are brought into view, and is used to determine if scroll bars must be displayed. Docked controls are excluded from the calculations that determine if scroll bars must be displayed.

If the distance from the edge of a child control to the parent scrollable control is less than the value assigned to the AutoScrollMargin property and the AutoScroll property is set to true, the appropriate scroll bar is displayed.

This property is not relevant to this class.

Applies to

See also