Skip to main content

BlobBaseEdit.Properties Property

Gets settings specific to the BLOB editor.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v25.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

[DXCategory("Properties")]
public RepositoryItemBlobBaseEdit Properties { get; }

Property Value

Type Description
RepositoryItemBlobBaseEdit

A RepositoryItemBlobBaseEdit object that contains settings for the BLOB editor.

Remarks

Use Properties to configure popup behavior, icon display, and resize settings common to BLOB editors. Settings include:

The following code snippet uses Properties to customize a MemoExEdit control:

using DevExpress.XtraEditors;

MemoExEdit memoExEdit1 = new MemoExEdit();
memoExEdit1.Properties.PopupSizeable = true;
memoExEdit1.Properties.ShowIcon = true;
See Also