Skip to main content
A newer version of this page is available. .

BaseLayoutItem.StartNewLine Property

Gets or sets whether the current item starts a new row within a flow layout.

Namespace: DevExpress.XtraLayout

Assembly: DevExpress.XtraLayout.v19.1.dll

Declaration

[Browsable(true)]
[DefaultValue(false)]
[XtraSerializableProperty]
[DXCategory("Behavior")]
public virtual bool StartNewLine { get; set; }

Property Value

Type Default Description
Boolean **false**

true, if the layout item starts a new row within the flow layout; otherwise, false.

Remarks

In flow layout mode, layout items are automatically arranged in rows according to their order in the LayoutGroup.Items collection, and are automatically wrapped at the group’s right edge. If there is insufficient space in a row to arrange an item, this item is carried over to the next line. You can force an item to start a new row by setting the StartNewLine property to true.

FlowLayoutStartNewLineProperty

See Also