ÎļþÃû´Ó Application/IStation.Application.DataFile/Report/Helper/ITextSharpPdfHeadAndFooterHelper.cs ÐÞ¸Ä |
| | |
| | | Font fontfooter = new Font(BsFont, 10); |
| | | PdfContentByte cbs = writer.DirectContent; |
| | | cbs.SetCharacterSpacing(1.3f); //设置æåæ¾ç¤ºæ¶çåé´è· |
| | | Phrase footer = new Phrase(DateTime.Now.ToShortDateString(), fontfooter); |
| | | Phrase footer = new Phrase("çææ¥æ:"+DateTime.Now.ToShortDateString(), fontfooter); |
| | | ColumnText.ShowTextAligned(cbs, Element.ALIGN_CENTER, footer, |
| | | document.Right / 2, document.Bottom, 0); |
| | | |