LEADTOOLS (Leadtools assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.29
PagesChanged Event
See Also 
Leadtools Namespace > RasterImage Class : PagesChanged Event



Occurs when pages are added, inserted or removed from this RasterImage object. Supported in Silverlight, Windows Phone 7

Syntax

Visual Basic (Declaration) 
Public Event PagesChanged As EventHandler(Of RasterImagePagesChangedEventArgs)
Visual Basic (Usage)Copy Code
Dim instance As RasterImage
Dim handler As EventHandler(Of RasterImagePagesChangedEventArgs)
 
AddHandler instance.PagesChanged, handler
C++/CLI 
public:
event EventHandler<RasterImagePagesChangedEventArgs^>^ PagesChanged

Event Data

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

PropertyDescription
Action Indicates whether pages are added, removed or inserted. Supported in Silverlight, Windows Phone 7
Count The number of pages being added, removed inserted. Supported in Silverlight, Windows Phone 7
StartIndex The index of the index of the first page being added, removed inserted. Supported in Silverlight, Windows Phone 7

Example

For an example, refer to RasterImagePagesChangedEventArgs.

Remarks

For more information, refer to RasterImagePagesChangedEventArgs.

Requirements

Target Platforms: Silverlight, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only), Windows Phone 7

See Also