expressappframework-devexpress-dot-expressapp-dot-model-dot-imodellistview-ad8f49aa.md
Specifies whether automatic update of the List Views‘s column indices is disabled.
Namespace : DevExpress.ExpressApp.Model
Assembly : DevExpress.ExpressApp.v25.2.dll
NuGet Package : DevExpress.ExpressApp
[ModelBrowsable(typeof(NotNewNodeVisibleCalculator))]
bool FreezeColumnIndices { get; set; }
<ModelBrowsable(GetType(NotNewNodeVisibleCalculator))>
Property FreezeColumnIndices As Boolean
| Type | Description |
|---|---|
| Boolean |
true, if the automatic update of indices is disabled; otherwise, false. The default is false.
|
By default, the column indices are updated automatically in the following cases:
Set the FreezeColumnIndices property to true to prohibit automatic updates of column indices. In this instance, only manual modifications will be allowed.
Note
The FreezeColumnIndices property is not available for List View nodes that you have added or cloned at the current Application Model layer. Column indices in these nodes are never updated automatically.
When you set the FreezeColumnIndices property to true, Model Editor copies the current values of column indices to the model differences. As a result, any changes from lower layers are overridden. When you revert the FreezeColumnIndices back to false the Model Editor resets differences - all current indices customizations are removed.
See Also