DevForce Help Reference
PageChanged Event


Fired after a page changes.
Syntax
'Declaration
 
Public Event PageChanged As EventHandler(Of EntityQueryPageChangedEventArgs(Of T))
'Usage
 
Dim instance As EntityQueryPager(Of T)
Dim handler As EventHandler(Of EntityQueryPageChangedEventArgs(Of T))
 
AddHandler instance.PageChanged, handler
Event Data

The event handler receives an argument of type EntityQueryPageChangedEventArgs<T> containing data related to this event. The following EntityQueryPageChangedEventArgs<T> properties provide information specific to this event.

PropertyDescription
Cancelled Returns whether the operation was cancelled. (Inherited from IdeaBlade.EntityModel.CompletedEventArgs)
CompletedSuccessfully Returns whether the operation completed successfully. (Inherited from IdeaBlade.EntityModel.CompletedEventArgs)
CompletedSynchronously Returns whether the operation was completed synchronously. (Inherited from IdeaBlade.EntityModel.CompletedEventArgs)
Error The exception, if any, thrown by the underlying operation. (Inherited from IdeaBlade.EntityModel.CompletedEventArgs)
HasError Returns whether the operation failed. (Inherited from IdeaBlade.EntityModel.CompletedEventArgs)
IsCompleted Returns whether the operation completed. (Inherited from IdeaBlade.EntityModel.CompletedEventArgs)
IsErrorHandled Whether the Error was handled ( if one exists). (Inherited from IdeaBlade.EntityModel.CompletedEventArgs)
PageIndex The index of the page moved to.  
Results The query results for the page.  
Remarks
The EntityQueryPageChangedEventArgs<T> contain both the index of the new page and the contents of that page.
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

EntityQueryPager<T> Class
EntityQueryPager<T> Members

Send Feedback