You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

22 lines
771 B

using System.ComponentModel;
namespace OT.Controls.DataPager
{
///// <include file='AspNetPagerDocs.xml' path='AspNetPagerDoc/Class[@name="PageChangingEventArgs"]/*'/>
public sealed class PageChangingEventArgs : CancelEventArgs
{
private readonly int _newpageindex;
///// <include file='AspNetPagerDocs.xml' path='AspNetPagerDoc/Constructor[@name="PageChangingEventArgs"]/*'/>
public PageChangingEventArgs(int newPageIndex)
{
_newpageindex = newPageIndex;
}
///// <include file='AspNetPagerDocs.xml' path='AspNetPagerDoc/Property[@name="NewPageIndex"]/*'/>
public int NewPageIndex
{
get { return _newpageindex; }
}
}
}