Skip to main content
A newer version of this page is available. .

PivotCustomCellEditEventArgs.RepositoryItem Property

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

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.XtraPivotGrid.v19.2.dll

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

The default in-place editor for a cell is identified by the PivotGridField.FieldEdit property. You can override this editor for particular cells, assigning another repository item to the RepositoryItem property. Note that all repository items used in the Pivot Grid Control must be added to the DevExpress.XtraPivotGrid.PivotGridControl.RepositoryItems collection. If you create repository items manually in code, you need to manually add them to this collection.

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