Skip to main content
Row

CustomCellInplaceEditor.UseOnlyVisibleDataRange Property

Gets a value indicating whether values of hidden cells should be included into the item list of the combo box in-place editor whose items are obtained from a cell range.

Namespace: DevExpress.Spreadsheet

Assembly: DevExpress.Spreadsheet.v23.2.Core.dll

NuGet Package: DevExpress.Spreadsheet.Core

Declaration

bool UseOnlyVisibleDataRange { get; set; }

Property Value

Type Description
Boolean

true if only values of visible cells should be added to the combo box editor’s item collection; otherwise, false.

Remarks

The UseOnlyVisibleDataRange property is relevant only for a cell in-place editor of the CustomCellInplaceEditorType.ComboBox type whose items originate from a cell range (using the ValueObject.FromRange property). By default, this parameter is false and values of hidden cells are always included into the editor’s item list. Using this parameter for the custom cell in-place editors of other types or for a combo box editor with an arbitrary list of items will trigger a System.ArgumentException.

See Also