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

TcxCustomBlobEditProperties.PictureFilter Property

Specifies the file type filter applied to “Open” and “Save As” picture dialogs of the BLOB editor.

#Declaration

Delphi
property PictureFilter: string read; write;

#Property Value

Type
string

#Remarks

Use the PictureFilter property to specify the file type filter applied to the “Open” and “Save As” picture dialogs of a BLOB editor. The filter string can contain wildcards. An example of a file type filter string is shown below:

cxBlobEdit1.Properties.PictureFilter := 'Windows Meta Files(*.wmf)|*.wmf';

If the PictureFilter property value is an empty string, then the BLOB editor dialog displays the files of all allowed types. BLOB editors are capable of displaying the following graphic files types:

  • Icons (*.ico);

  • Bitmaps (*.bmp);

  • Windows metafiles and enhanced metafiles (*.wmf and *.emf);

  • JPEG images (*.jpg and *.jpeg).

See Also