Leadtools.Web Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
ImageDataChanged Event
See Also 
Leadtools.Web.Controls Namespace > WebImageViewer Class : ImageDataChanged Event




Fires if the current loaded image data has changed.

Syntax

Visual Basic (Declaration) 
Public Event ImageDataChanged() As EventHandler
Visual Basic (Usage)Copy Code
Dim instance As WebImageViewer
Dim handler As EventHandler
 
AddHandler instance.ImageDataChanged, handler
C# 
public event EventHandler ImageDataChanged()
C++/CLI 
public:
event EventHandler^ ImageDataChanged();
JavaScript 
function ImageDataChanged(e);

Example

Remarks

Image data can be changed by applying an image processing command.

You can use the javascript version of this event to manually update the currently selected thumbnail to apply this image change to it.

For more information refer to Updating WebControls Manually

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also