LEADTOOLS Windows Forms (Leadtools.WinForms assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.30
OnChanged Method
See Also 
Leadtools.WinForms Namespace > RasterThumbnailBrowser Class : OnChanged 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 WatcherChanged event

Syntax

Visual Basic (Declaration) 
Protected Overridable Sub OnChanged( _
   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.OnChanged(sender, e)
C# 
protected virtual void OnChanged( 
   object sender,
   FileSystemEventArgs e
)
C++/CLI 
protected:
virtual void OnChanged( 
   Object^ sender,
   FileSystemEventArgs^ e
) 

Parameters

sender
The sender
e
A FileSystemEventArgs that contains the event data

Remarks

OnChanged is called when changes are made to the size, system attributes, last write time, last access time, or security permissions of a file or directory in the directory being monitored.

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