Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

BaseLayoutItem.StartNewLine Property

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

Namespace: DevExpress.XtraLayout

Assembly: DevExpress.XtraLayout.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

[Browsable(true)]
[DefaultValue(false)]
[DXCategory("Behavior")]
[XtraSerializableProperty]
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.

See Also