public static void OldalSzamozas( DocX document ) { document.AddFooters( ); var footer = document.Footers.odd; var footerTable = footer.InsertTable(1, 2); footerTable.Rows[0].Cells[1].Paragraphs[0].InsertPageNumber( PageNumberFormat.normal, 0 ); footerTable.Rows[0].Cells[1].Paragraphs[0].Append( ". oldal" ); footerTable.AutoFit = AutoFit.ColumnWidth; footerTable.Rows[0].Cells[0].Width = document.PageWidth; footerTable.Rows[0].Cells[1].Width = 70; Border c = new Border(Novacode.BorderStyle.Tcbs_none, BorderSize.seven, 0, Color.Black ); footerTable.SetBorder( TableBorderType.InsideH, c ); footerTable.SetBorder( TableBorderType.InsideV, c ); footerTable.SetBorder( TableBorderType.Bottom, c ); footerTable.SetBorder( TableBorderType.Top, c ); footerTable.SetBorder( TableBorderType.Left, c ); footerTable.SetBorder( TableBorderType.Right, c ); }