Server.Engines.Reports.StaffHistory.GetPageCount C# (CSharp) Метод

GetPageCount() публичный статический Метод

public static GetPageCount ( StaffInfo staff, System.DateTime min, System.DateTime max ) : int
staff StaffInfo
min System.DateTime
max System.DateTime
Результат int
		public static int GetPageCount( StaffInfo staff, DateTime min, DateTime max )
		{
			return GetPageCount( staff.Pages, PageResolution.Handled, min, max );
		}

Same methods

StaffHistory::GetPageCount ( Server.Engines.Reports.PageInfoCollection pages, PageResolution res, System.DateTime min, System.DateTime max ) : int

Usage Example

Пример #1
0
 public int GetPageCount(PageResolution res, DateTime min, DateTime max)
 {
     return(StaffHistory.GetPageCount(m_Pages, res, min, max));
 }