ImageGear .NET v25.2 - Updated
ImageGear.Windows.Forms Assembly / ImageGear.Windows.Forms.Thumbnails Namespace / ImGearThumbnailBeforeLoadEventHandler Delegate
Object that triggered the event.
Information about the event.




In This Topic
    ImGearThumbnailBeforeLoadEventHandler Delegate
    In This Topic
    Used for declaring ItemBeforeLoad event.
    Syntax
    'Declaration
     
    Public Delegate Sub ImGearThumbnailBeforeLoadEventHandler( _
       ByVal sender As Object, _
       ByVal e As ImGearThumbnailBeforeLoadEventArgs _
    ) 
    'Usage
     
    Dim instance As New ImGearThumbnailBeforeLoadEventHandler(AddressOf HandlerMethod)
    public delegate void ImGearThumbnailBeforeLoadEventHandler( 
       object sender,
       ImGearThumbnailBeforeLoadEventArgs e
    )
    public: __gc __delegate void ImGearThumbnailBeforeLoadEventHandler( 
       Object* sender,
       ImGearThumbnailBeforeLoadEventArgs* e
    )
    public delegate void ImGearThumbnailBeforeLoadEventHandler( 
       Object^ sender,
       ImGearThumbnailBeforeLoadEventArgs^ e
    )

    Parameters

    sender
    Object that triggered the event.
    e
    Information about the event.
    Remarks
    This delegate is used for declaring ItemBeforeLoad event.
    See Also