PdfRpt.FluentInterface.PagesHeaderBuilder.CacheHeader C# (CSharp) 메소드

CacheHeader() 공개 메소드

You can define different headers for each page. If all of the headers of the document's pages are the same, set this value to true, to optimize the performance and document size. Its default value is true.
public CacheHeader ( bool cache = true ) : void
cache bool true or false
리턴 void
        public void CacheHeader(bool cache = true)
        {
            _pdfReport.DataBuilder.CacheHeader(cache);
        }