TcxCustomBlobEditProperties.PictureFilter Property
Specifies the file type filter applied to “Open” and “Save As” picture dialogs of the BLOB editor.
Declaration
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