7 references to PageCount
PresentationFramework (7)
src\Framework\MS\Internal\Documents\FixedDocumentPaginator.cs (1)
128get { return _document.PageCount; }
src\Framework\System\Windows\Documents\FixedDocument.cs (3)
886if (PageCount > 0) 1208Debug.Assert(pageNo >= 0 && pageNo<PageCount); 1209if (pageNo >=0 && pageNo < PageCount && dirtyPages.IndexOf(pageNo) < 0)
src\Framework\System\Windows\Documents\FixedFindEngine.cs (1)
349Debug.Assert(translatedPageNo >= 0 && translatedPageNo < doc.PageCount);
src\Framework\System\Windows\Documents\FixedTextContainer.cs (2)
365pageNumber = this.FixedDocument.PageCount - 1; 381pageNumber = this.FixedDocument.PageCount - 1;