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.1.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