PdfRpt.FooterTemplates.DefaultFooterProvider.addPrintDate C# (CSharp) Method

addPrintDate() private method

private addPrintDate ( Rectangle pageSize, string printTime ) : void
pageSize iTextSharp.text.Rectangle
printTime string
return void
        private void addPrintDate(Rectangle pageSize, string printTime)
        {
            ColumnText.ShowTextAligned(
                        canvas: _pdfContentByte,
                        alignment: Element.ALIGN_RIGHT,
                        phrase: _pdfRptFont.FontSelector.Process(printTime),
                        x: pageSize.GetRight(40),
                        y: pageSize.GetBottom(30),
                        rotation: 0,
                        runDirection: (int)_direction,
                        arabicOptions: 0);
        }