Skip to main content
Row

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

CustomCellInplaceEditorCollection.GetCustomCellInplaceEditor(Cell) Method

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
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