Skip to main content
.NET 6.0+

IFileData Interface

Declares members implemented by the classes that can be represented in a UI using the FileDataPropertyEditor.

Namespace: DevExpress.Persistent.Base

Assembly: DevExpress.Persistent.Base.v23.2.dll

Declaration

public interface IFileData

Remarks

You can create your own IFileData implementation. To see an example, refer to the FileData class sources at %PROGRAMFILES%\DevExpress 23.2\Components\Sources\DevExpress.Persistent\DevExpress.Persistent.BaseImpl.EFCore\FileData.cs or see the following articles:

When the File Attachments module is added to the application, the FileDataPropertyEditor in WinForms and ASP.NET Web Forms applications is used to visualize the business object properties of the IFileData type.

WinForms:

FileDataEdit_Transparent

ASP.NET Web Forms:

FileDataEdit_FileDataPropertyEditor_Transparent

Note

If you want to access the full path to a file, implement the ISupportFullName interface in your class in addition to IFileData.

See Also