PagePropertiesChangingEventArgs Class

Definition

Provides data for the PagePropertiesChanging event.

public ref class PagePropertiesChangingEventArgs : EventArgs
public class PagePropertiesChangingEventArgs : EventArgs
type PagePropertiesChangingEventArgs = class
    inherit EventArgs
Public Class PagePropertiesChangingEventArgs
Inherits EventArgs
Inheritance
PagePropertiesChangingEventArgs

Remarks

The ListView control raises the ListView.PagePropertiesChanging event whenever the ListView.SetPageProperties method is called. This occurs when a button in a DataPager control that is associated with the ListView control is clicked, and a new ListView.StartRowIndex or ListView.MaximumRows value is specified by the DataPager control. This enables you to provide a custom routine whenever this event occurs, such as clearing the SelectedIndex or EditIndex properties of the ListView control.

A PagePropertiesChangingEventArgs object is passed to the event handler. This object enables you to determine the index of the first item in the page that was selected by the user. You can also determine the maximum number of items to display on each page.

For more information about how to handle events, see Handling and Raising Events.

For a list of initial property values for an instance of the PagePropertiesChangingEventArgs class, see the PagePropertiesChangingEventArgs constructor.

Constructors

PagePropertiesChangingEventArgs(Int32, Int32)

Initializes a new instance of the PagePropertiesChangingEventArgs class.

Properties

MaximumRows

Gets the maximum number of items to display on each page of data.

StartRowIndex

Gets the index of the first item of the page.

Methods

Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetType()

Gets the Type of the current instance.

(Inherited from Object)
MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
ToString()

Returns a string that represents the current object.

(Inherited from Object)

Applies to

See also