ComponentOne Data Source for Entity Framework
C1.Data.DataSource Namespace / ClientCollectionView Class / PageChanging Event

In This Topic
    PageChanging Event
    In This Topic
    Occurs before changing the PageIndex.
    Syntax
    'Declaration
     
    
    Public Event PageChanging As System.EventHandler(Of PageChangingEventArgs)
    public event System.EventHandler<PageChangingEventArgs> PageChanging
    Event Data

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

    PropertyDescription
    (Inherited from System.ComponentModel.CancelEventArgs)
    Gets the index of the requested page.  
    Remarks
    This event allows to cancel the ongoing PageIndex change by setting System.ComponentModel.CancelEventArgs.Cancel to true.
    See Also