ImageGear .NET v25.2 - Updated
ImageGear.Windows.Forms Assembly / ImageGear.Windows.Forms.Thumbnails Namespace / ImGearThumbnailCtl Class / ItemAfterLoad Event




In This Topic
    ItemAfterLoad Event (ImGearThumbnailCtl)
    In This Topic
    Called after a new thumbnail item is added to the Thumbnail control.
    Syntax
    'Declaration
     
    <CategoryAttribute("Item")>
    Public Event ItemAfterLoad As ImGearThumbnailAfterLoadEventHandler
    'Usage
     
    Dim instance As ImGearThumbnailCtl
    Dim handler As ImGearThumbnailAfterLoadEventHandler
     
    AddHandler instance.ItemAfterLoad, handler
    [Category("Item")]
    public event ImGearThumbnailAfterLoadEventHandler ItemAfterLoad
    [Category("Item")]
    public: __event ImGearThumbnailAfterLoadEventHandler* ItemAfterLoad
    [Category("Item")]
    public:
    event ImGearThumbnailAfterLoadEventHandler^ ItemAfterLoad
    Event Data

    The event handler receives an argument of type ImGearThumbnailAfterLoadEventArgs containing data related to this event. The following ImGearThumbnailAfterLoadEventArgs properties provide information specific to this event.

    PropertyDescription
    Gets ImageGear.Core.ImGearPage class object containing full-sized picture that was used to create a thumbnail.  
    Gets or sets a value indicating whether or not to load thumbnail into a control.  
    Remarks
    During thumbnail item creation, the sequence of events is ItemBeforeLoad, then ItemAfterLoad, then ItemAfterCreate.
    See Also