//Used to create own footer void pd_DrawGridPrintFooter(object sender, Syncfusion.GridHelperClasses.GridPrintHeaderFooterTemplateArgs e) { //Get the rectangle area to draw Rectangle footer = e.DrawRectangle; //Draw copy right StringFormat format = new StringFormat(); format.LineAlignment = StringAlignment.Center; format.Alignment = StringAlignment.Center; Font font = new Font("Helvetica", 8); SolidBrush brush = new SolidBrush(Color.Red); e.Graphics.DrawString("@copyright", font, brush, GridUtil.CenterPoint(footer), format); //Draw page number format.LineAlignment = StringAlignment.Far; format.Alignment = StringAlignment.Far; e.Graphics.DrawString(string.Format("page {0} of {1}", e.PageNumber, e.PageCount), font, brush, new Point(footer.Right - 100, footer.Bottom - 20), format); //Dispose resources format.Dispose(); font.Dispose(); brush.Dispose(); }
//Used to create own header void pd_DrawGridPrintHeader(object sender, Syncfusion.GridHelperClasses.GridPrintHeaderFooterTemplateArgs e) { // Get the rectangle area to draw Rectangle header = e.DrawRectangle; //IMAGE //scale the image SizeF imageSize = new SizeF(header.Width / 3, header.Height * 0.8f); //Locating the logo on the right corner of the Drawing Surface PointF imageLocation = new PointF(e.DrawRectangle.Width - imageSize.Width - 20, header.Y + 5); Bitmap img = new Bitmap(@"..\..\Data\logo.png"); //Draw the image in the Header. e.Graphics.DrawImage(img, new RectangleF(imageLocation, imageSize)); //TITLE Color activeColor = Color.FromArgb(44, 71, 120); SolidBrush brush = new SolidBrush(activeColor); Font font = new Font("Helvetica", 20, FontStyle.Bold); //Set formattings for the text StringFormat format = new StringFormat(); format.Alignment = StringAlignment.Near; format.LineAlignment = StringAlignment.Near; //Draw the title e.Graphics.DrawString("Customers Order Report", font, brush, new RectangleF(header.Location.X + 20, header.Location.Y + 20, e.DrawRectangle.Width, e.DrawRectangle.Height), format); ///BORDER LINES - Draw some lines in the header Pen pen = new Pen(Color.DarkBlue, 0.8f); e.Graphics.DrawLine(pen, new Point(header.Left, header.Top + 2), new Point(header.Right, header.Top + 2)); e.Graphics.DrawLine(pen, new Point(header.Left, header.Top + 5), new Point(header.Right, header.Top + 5)); e.Graphics.DrawLine(pen, new Point(header.Left, header.Bottom - 8), new Point(header.Right, header.Bottom - 8)); e.Graphics.DrawLine(pen, new Point(header.Left, header.Bottom - 5), new Point(header.Right, header.Bottom - 5)); //Dispose drawing resources font.Dispose(); format.Dispose(); pen.Dispose(); }