LEADTOOLS Windows Forms (Leadtools.WinForms assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.30
OnRefreshStatus Method
See Also 
Leadtools.WinForms Namespace > RasterThumbnailBrowser Class : OnRefreshStatus Method



sender
The sender
e
A FileSystemEventArgs that contains the event data
sender
The sender
e
A FileSystemEventArgs that contains the event data
Fire the RefreshStatus event

Syntax

Visual Basic (Declaration) 
Protected Overridable Sub OnRefreshStatus( _
   ByVal sender As Object, _
   ByVal e As FileSystemEventArgs _
) 
Visual Basic (Usage)Copy Code
Dim instance As RasterThumbnailBrowser
Dim sender As Object
Dim e As FileSystemEventArgs
 
instance.OnRefreshStatus(sender, e)
C# 
protected virtual void OnRefreshStatus( 
   object sender,
   FileSystemEventArgs e
)
C++/CLI 
protected:
virtual void OnRefreshStatus( 
   Object^ sender,
   FileSystemEventArgs^ e
) 

Parameters

sender
The sender
e
A FileSystemEventArgs that contains the event data

Remarks

OnRefreshStatus is called when Refresh method called, Refresh method will add new thumbnail, update or delete, so for each operation that will be done using Refresh method, then OnRefreshStatus will be called to fire RefreshStatus event.

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7

See Also