ImageGear .NET v25.2 - Updated
ImageGear.Windows.Controls Assembly / ImageGear.Windows.Controls Namespace / ImGearThumbnailList Class / MarksLoading Event




In This Topic
    MarksLoading Event
    In This Topic
    This event is called when a thumbnail item is first generated and can be used to load the marks for the thumbnail item.
    Syntax
    'Declaration
     
    Public Event MarksLoading As ImGearMarksLoadingEventHandler
    'Usage
     
    Dim instance As ImGearThumbnailList
    Dim handler As ImGearMarksLoadingEventHandler
     
    AddHandler instance.MarksLoading, handler
    public event ImGearMarksLoadingEventHandler MarksLoading
    public: __event ImGearMarksLoadingEventHandler* MarksLoading
    public:
    event ImGearMarksLoadingEventHandler^ MarksLoading
    Event Data

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

    PropertyDescription
    Gets or sets the ARTPage that will be displayed in the thumbnail item.  
    Gets the ImGearThumbnailPage in which the marks are loading.  
    Remarks
    The LoadAllARTPages method can be used to fire the MarksLoading event for each thumbnail item that does not have an associated ImGearARTPage in the ThumbnailList.ARTPageCache.
    See Also