Skip to main content
Row

CustomCellInplaceEditorCollection.GetCustomCellInplaceEditors(CustomCellInplaceEditorType) Method

Returns a collection of the custom cell in-place editors of the specified type.

Namespace: DevExpress.Spreadsheet

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

NuGet Package: DevExpress.Spreadsheet.Core

Declaration

IList<CustomCellInplaceEditor> GetCustomCellInplaceEditors(
    CustomCellInplaceEditorType editorType
)

Parameters

Name Type Description
editorType CustomCellInplaceEditorType

A CustomCellInplaceEditorType enumeration value specifying the type of the custom cell in-place editors to be returned.

Returns

Type Description
IList<CustomCellInplaceEditor>

A IList<T><CustomCellInplaceEditor,> collection of the custom cell in-place editors of the specified type.

Remarks

Use the GetCustomCellInplaceEditors method to obtain a collection of the custom cell in-place editors of a particular type. If the custom cell in-place editors of the specified type are not found, the GetCustomCellInplaceEditors method returns an empty list.

See Also