CustomCellInplaceEditorCollection.GetCustomCellInplaceEditors(CustomCellInplaceEditorType, ValueObject) Method
Returns a collection of the custom cell in-place editors of the specified type and associated with the specified value.
Namespace: DevExpress.Spreadsheet
Assembly: DevExpress.Spreadsheet.v25.1.Core.dll
NuGet Package: DevExpress.Spreadsheet.Core
Declaration
IList<CustomCellInplaceEditor> GetCustomCellInplaceEditors(
CustomCellInplaceEditorType editorType,
ValueObject value
)
Parameters
| Name | Type | Description |
|---|---|---|
| editorType | CustomCellInplaceEditorType | A CustomCellInplaceEditorType enumeration value specifying the required type of the custom cell in-place editors. |
| value | ValueObject | A ValueObject object associated with 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. |
Remarks
If the custom cell in-place editors with the specified properties are not found, the GetCustomCellInplaceEditors method returns an empty list.
See Also