Skip to main content

SpreadsheetCustomCellEditEventArgs.RepositoryItem Property

Gets or sets the in-place editor for the current cell.

Namespace: DevExpress.XtraSpreadsheet

Assembly: DevExpress.XtraSpreadsheet.v23.2.dll

NuGet Package: DevExpress.Win.Spreadsheet

Declaration

public RepositoryItem RepositoryItem { get; set; }

Property Value

Type Description
RepositoryItem

A RepositoryItem descendant that specifies the in-place editor for the current cell.

Remarks

To supply a custom in-place editor to the SpreadsheetControl’s cell, a specific repository item should be created. A repository item is a RepositoryItem class descendant that stores properties and events related to a specific editor. It has all the information required for creating a corresponding fully-functional editor. Refer to the Editors and Simple Controls topic for details on the repository technology.

For more information on how to embed custom in-place editors within worksheet cells, see the Custom Cell In-place Editors example.

The following code snippets (auto-collected from DevExpress Examples) contain references to the RepositoryItem property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also