PdfRpt.PdfReportDocument.GeneratePdf C# (CSharp) Method

GeneratePdf() public method

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

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