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

BlobBaseEdit Class

The base class for editors that work with binary large object (BLOB) data.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

public abstract class BlobBaseEdit :
    PopupBaseEdit

#Remarks

The abstract BlobBaseEdit class is the base class for editors used to contain BLOB data and display its representation (text or image) within the popup window. It implements the basic functionality for the MemoExEdit and ImageEdit editors.

Note that the BlobBaseEdit class is derived from the PopupBaseEdit class and, thus, inherits all the functionality related to popup window management.

The BlobBaseEdit.Properties property of the BlobBaseEdit class provides access to a RepositoryItemBlobBaseEdit object providing settings common to BLOB editors. Descendants of the BlobBaseEdit class provide RepositoryItemBlobBaseEdit descendants to represent their repository items. Each descendant introduces a particular functionality specific to editor type and inherits common BLOB editor settings.

You should not create instances of the BlobBaseEdit class directly. Use it as the base class when creating custom editors that must work with BLOB data.

See Also