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

ComponentEditorContainer.RepositoryItems Property

Provides access to the component’s internal repository.

Namespace: DevExpress.XtraEditors.Container

Assembly: DevExpress.XtraEditors.v19.1.dll

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.

For more information on repositories and repository items refer to the Repositories and Repository Items document.

The following code snippets (auto-collected from DevExpress Examples) contain references to the RepositoryItems 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