Initializes a new instance of the ImGearThumbnailBeforeLoadEventArgs class.
            
            
            
            Syntax
            
            
            
            
            'Declaration
 
Public Function New( _
   ByVal  As RoutedEvent, _
   ByVal  As ImGearLoadingSelection, _
   ByVal  As ImGearPage, _
   ByVal  As Integer, _
   ByVal  As Boolean _
)
             
        
            
            'Usage
 
Dim routedEvent As RoutedEvent
Dim source As ImGearLoadingSelection
Dim page As ImGearPage
Dim pageNumber As Integer
Dim skip As Boolean
 
Dim instance As New ImGearThumbnailBeforeLoadEventArgs(routedEvent, source, page, pageNumber, skip)
             
        
            
            public ImGearThumbnailBeforeLoadEventArgs( 
   RoutedEvent ,
   ImGearLoadingSelection ,
   ImGearPage ,
   int ,
   bool 
)
             
        
            
            public: ImGearThumbnailBeforeLoadEventArgs( 
   RoutedEvent* ,
   ImGearLoadingSelection* ,
   ImGearPage* ,
   int ,
   bool 
)
             
        
            
            public:
ImGearThumbnailBeforeLoadEventArgs( 
   RoutedEvent^ ,
   ImGearLoadingSelection^ ,
   ImGearPage^ ,
   int ,
   bool 
)
             
        
             
        
            Parameters
- routedEvent
- Reference to event object.
- source
- Reference to ImageGear.Windows.Forms.ImGearLoadingSelection object that contains path and format of the currently loaded thumbnail.
- page
- ImageGear.Core.ImGearPage object containing full-sized picture that was used to create a thumbnail.
- pageNumber
- Page number of the currently loaded thumbnail.
- skip
- Flag indicating whether or not to load thumbnail into a control.
 
            
            
            
            
            
            
            
            
            
            
            
            See Also