CustomCellInplaceEditorCollection.GetCustomCellInplaceEditor(Cell) Method
Returns the custom in-place editor assigned to the specified cell.
Namespace: DevExpress.Spreadsheet
Assembly: DevExpress.Spreadsheet.v24.1.Core.dll
NuGet Package: DevExpress.Spreadsheet.Core
Declaration
Parameters
Name | Type | Description |
---|---|---|
cell | Cell | A Cell object specifying a cell that contains the custom editor to be returned. |
Returns
Type | Description |
---|---|
CustomCellInplaceEditor | A CustomCellInplaceEditor object that is a custom in-place editor assigned to the specified cell. |
Remarks
Use the GetCustomCellInplaceEditor method to obtain a custom in-place editor assigned to a particular cell in a worksheet. The GetCustomCellInplaceEditor method returns null (Nothing in Visual Basic) in the following cases:
- If the cell parameter of the method is null.
- If the Cell object specified by the cell parameter doesn’t belong to the worksheet owning the current CustomCellInplaceEditorCollection collection that calls this method.
- If the specified cell doesn’t contain a custom in-place editor.
See Also