Skip to main content

ComponentEditorContainer.RepositoryItems Property

Provides access to the component’s internal repository.

Namespace: DevExpress.XtraEditors.Container

Assembly: DevExpress.XtraEditors.v23.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