Back to Devexpress

ComboBoxEdit.Properties Property

windowsforms-devexpress-dot-xtraeditors-dot-comboboxedit-f1ec36cf.md

latest2.8 KB
Original Source

ComboBoxEdit.Properties Property

Gets settings specific to the combo box editor.

Namespace : DevExpress.XtraEditors

Assembly : DevExpress.XtraEditors.v25.2.dll

NuGet Package : DevExpress.Win.Navigation

Declaration

csharp
[DXCategory("Properties")]
[SmartTagSearchNestedProperties]
public RepositoryItemComboBox Properties { get; }
vb
<DXCategory("Properties")>
<SmartTagSearchNestedProperties>
Public ReadOnly Property Properties As RepositoryItemComboBox

Property Value

TypeDescription
RepositoryItemComboBox

A RepositoryItemComboBox object containing settings for the current editor.

|

Remarks

See RepositoryItemComboBox to learn more.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Properties 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.

winforms-combobox-with-close-and-clear-buttons-in-dropdown/CS/WindowsApplication3/CustomComboBoxEdit.cs#L35

csharp
{
    get { return base.Properties as RepositoryItemCustomEdit; }
}

winforms-combobox-with-close-and-clear-buttons-in-dropdown/VB/WindowsApplication3/CustomComboBoxEdit.vb#L29

vb
Get
    Return TryCast(MyBase.Properties, RepositoryItemCustomEdit)
End Get

See Also

RepositoryItemComboBox

ComboBoxEdit Class

ComboBoxEdit Members

DevExpress.XtraEditors Namespace