'Declaration
Public Event FileTypeNotSupported As EventHandler(Of ThumbnailEx.FileTypeNotSupportedEventArgs)
public event EventHandler<ThumbnailEx.FileTypeNotSupportedEventArgs> FileTypeNotSupported
public event FileTypeNotSupported: EventHandler;
In JScript, you can handle the events defined by another class, but you cannot define your own.
public: __event EventHandler<ThumbnailEx.FileTypeNotSupportedEventArgs*>* FileTypeNotSupported
public: event EventHandler<ThumbnailEx.FileTypeNotSupportedEventArgs^>^ FileTypeNotSupported
Event Data
The event handler receives an argument of type ThumbnailEx.FileTypeNotSupportedEventArgs containing data related to this event. The following ThumbnailEx.FileTypeNotSupportedEventArgs properties provide information specific to this event.
Property | Description |
---|---|
CustomBitmapID | A GdPicture Image Identifier which can be passed by reference. |
FilePath | The path of the unsupported file. |
ReleaseBitmap | A reference to a boolean value. If set to true and if a CustomBitmapID parameter is provided, the control will automatically release the CustomBitmapID from the memory. |
See Also