Skip to main content

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

ComponentEditorContainer.RepositoryItems Property

Provides access to the component’s internal repository.

Namespace: DevExpress.XtraEditors.Container

Assembly: DevExpress.XtraEditors.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

[Browsable(false)]
public virtual RepositoryItemCollection RepositoryItems { get; }

#Property Value

Type Description
RepositoryItemCollection

A RepositoryItemCollection object containing repository items whose settings can be used to create inplace editors.

#Remarks

The RepositoryItems property provides access to the internal repository of a ComponentEditorContainer component. This stores repository items that can used by the component to create inplace editors (for instance, editors to edit the values of bar items in XtraBars).

Note: if you need to use a repository item within a specific ComponentEditorContainer descendant, ensure that this item is added to the component’s internal or external repository. When an item is created via a component’s designer at design time, it is added to the component’s internal repository automatically. When an item is created at runtime it must be added to the component’s internal or external repository manually.

To add a repository item to an external repository use the ComponentEditorContainer.ExternalRepository property.

See Also