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

RepositoryItem.OwnerEdit Property

Gets the editor that owns the repository item.

Namespace: DevExpress.XtraEditors.Repository

Assembly: DevExpress.XtraEditors.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

[Browsable(false)]
public BaseEdit OwnerEdit { get; }

#Property Value

Type Description
BaseEdit

A BaseEdit descendant that owns the repository item.

#Remarks

The OwnerEdit property returns the editor which owns the current repository item. You can use this property to obtain the editor’s value, for instance.

Every edit control has a Properties property representing a repository item object. Repository items store settings specific to particular editors and provide these to container controls in order to create inplace editors. Thus, every editor owns a repository item.

Note: a repository item object can exist without an edit control. The OwnerEdit property returns null (Nothing in Visual Basic) in this case.

See Also