PdfRpt.PdfReportDocument.GeneratePdf C# (CSharp) 메소드

GeneratePdf() 공개 메소드

Start generating the report based on the PdfRptData
public GeneratePdf ( bool debugMode = false ) : byte[]
debugMode bool
리턴 byte[]
        public byte[] GeneratePdf(bool debugMode = false)
        {
            checkNullValues();

            if (debugMode)
            {
                return runInDebugMode();
            }
            return runInReleaseMode();
        }