CustomCellInplaceEditorCollection.GetCustomCellInplaceEditor(Cell) Method
In This Article
Returns the custom in-place editor assigned to the specified cell.
Namespace: DevExpress.Spreadsheet
Assembly: DevExpress.Spreadsheet.v24.2.Core.dll
NuGet Package: DevExpress.Spreadsheet.Core
#Declaration
CustomCellInplaceEditor GetCustomCellInplaceEditor(
Cell cell
)
#Parameters
Name | Type | Description |
---|---|---|
cell | Cell | A Cell object specifying a cell that contains the custom editor to be returned. |
#Returns
Type | Description |
---|---|
Custom |
A Custom |
#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