Initial Commit
This commit is contained in:
75
iTechSharp/iTextSharp/text/rtf/field/RtfPageNumber.cs
Normal file
75
iTechSharp/iTextSharp/text/rtf/field/RtfPageNumber.cs
Normal file
@@ -0,0 +1,75 @@
|
||||
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) {
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user