FlowLayoutSettings.WrapContents Property

Definition

Gets or sets a value indicating whether the contents should be wrapped or clipped when they exceed the original boundaries of their container.

public:
 property bool WrapContents { bool get(); void set(bool value); };
public bool WrapContents { get; set; }
member this.WrapContents : bool with get, set
Public Property WrapContents As Boolean

Property Value

true if the contents should be wrapped; otherwise, false if the contents should be clipped. The default is true.

Remarks

If the area of the container is too small to display all the child controls, then at least one control will be clipped regardless of the WrapContents value.

Subsequent resizing of the container will reapply the layout to the contained controls.

Applies to

See also