2023-06-21 12:46:23 -04:00

75 lines
2.1 KiB
C#

using System;
using System.IO;
using iTextSharp.text;
using iTextSharp.text.rtf.document;
/*
* Created on Aug 10, 2004
*
* To change the template for this generated file go to
* Window - Preferences - Java - Code Generation - Code and Comments
*/
namespace iTextSharp.text.rtf.field {
/**
* The RtfPageNumber provides the page number field in rtf documents.
*
* @version $Revision: 1.4 $
* @author Mark Hall (Mark.Hall@mail.room3b.eu)
* @author <a href="mailto:Steffen.Stundzig@smb-tec.com">Steffen.Stundzig@smb-tec.com</a>
*/
public class RtfPageNumber : RtfField {
/**
* Constant for the page number
*/
private static byte[] PAGE_NUMBER = DocWriter.GetISOBytes("PAGE");
/**
* Constructs a RtfPageNumber. This can be added anywhere to add a page number field.
*/
public RtfPageNumber() : base(null) {
}
/**
* Constructs a RtfPageNumber with a specified Font. This can be added anywhere to
* add a page number field.
* @param font
*/
public RtfPageNumber(Font font) : base(null, font) {
}
/**
* Constructs a RtfPageNumber object.
*
* @param doc The RtfDocument this RtfPageNumber belongs to
*/
public RtfPageNumber(RtfDocument doc) : base(doc) {
}
/**
* Constructs a RtfPageNumber object with a specific font.
*
* @param doc The RtfDocument this RtfPageNumber belongs to
* @param font The Font to use
*/
public RtfPageNumber(RtfDocument doc, Font font) : base(doc, font) {
}
/**
* Writes the field instruction content
*
* @
*/
protected override void WriteFieldInstContent(Stream oupt) {
oupt.Write(PAGE_NUMBER, 0, PAGE_NUMBER.Length);
}
/**
* Writes the field result content
*
* @
*/
protected override void WriteFieldResultContent(Stream oupt) {
}
}
}