PagePropertiesChangingEventArgs(Int32, Int32) Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.