PagePropertiesChangingEventArgs(Int32, Int32) Constructor

Definition

Initializes a new instance of the PagePropertiesChangingEventArgs class.

public:
 PagePropertiesChangingEventArgs(int startRowIndex, int maximumRows);
public PagePropertiesChangingEventArgs (int startRowIndex, int maximumRows);
new System.Web.UI.WebControls.PagePropertiesChangingEventArgs : int * int -> System.Web.UI.WebControls.PagePropertiesChangingEventArgs
Public Sub New (startRowIndex As Integer, maximumRows As Integer)

Parameters

startRowIndex
Int32

The index of the first item of the page.

maximumRows
Int32

The maximum number of items to display on each page of data.

Remarks

This constructor is primarily used by control developers when raising events.

The following table shows initial property values for an instance of the PagePropertiesChangingEventArgs class.

Property Initial value
StartRowIndex The value of the startRowIndex parameter.
MaximumRows The value of the maximumRows parameter.

Applies to

See also