ImageGear .NET v25.2 - Updated
ImageGear.Wpf Assembly / ImageGear.WPF Namespace / ImGearThumbnailCtl Class / ItemAfterLoad Event




In This Topic
    ItemAfterLoad Event (ImGearThumbnailCtl)
    In This Topic
    This event is called during the process of creating a thumbnail item.
    Syntax
    'Declaration
     
    Public Event ItemAfterLoad As ImGearThumbnailAfterLoadEventHandler
    'Usage
     
    Dim instance As ImGearThumbnailCtl
    Dim handler As ImGearThumbnailAfterLoadEventHandler
     
    AddHandler instance.ItemAfterLoad, handler
    public event ImGearThumbnailAfterLoadEventHandler ItemAfterLoad
    public: __event ImGearThumbnailAfterLoadEventHandler* ItemAfterLoad
    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 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
    This event is raised after the image has been loaded into ImageGear.Core.ImGearPage object, but before the thumbnail item is created. Your application can implement this event handler if it needs to restrict the thumbnail items based on the file attributes.
    See Also