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

OptionsColumnLayout.AddNewColumns Property

Gets or sets whether the columns that exist in the current control but do not exist in a layout when it’s restored should be retained.

Namespace: DevExpress.Utils

Assembly: DevExpress.Data.v18.2.dll

Declaration

[TypeConverter(typeof(BooleanTypeConverter))]
[DefaultValue(true)]
[XtraSerializableProperty]
public bool AddNewColumns { get; set; }

Property Value

Type Default Description
Boolean **true**

true to retain the columns that exist in the current control’s layout but don’t exist in the layout being restored; false to destroy such columns.

Property Paths

You can access this nested property as listed below:

Library Object Type Path to AddNewColumns
Cross-Platform Class Library OptionsLayoutGrid
.Columns.AddNewColumns
PivotGridOptionsLayout
.Columns.AddNewColumns
WinForms Controls WinExplorerViewOptionsLayout
.Columns.AddNewColumns
VGridOptionsLayout
.Columns.AddNewColumns
ASP.NET Controls and MVC Extensions PivotGridWebOptionsLayout
.Columns.AddNewColumns

Remarks

This option affects how the control’s layout is restored. If it’s set to true the columns that exist in the current control’s layout but do not exist in the layout being restored will be retained. Otherwise, these columns will be destroyed.

See Also