C# Class iTextSharp.text.Meta

This is an Element that contains some meta information about the document.
An object of type Meta can not be constructed by the user. Userdefined meta information should be placed in a Header-object. Meta is reserved for: Subject, Keywords, Author, Title, Producer and Creationdate information.
Inheritance: IElement
ファイルを表示 Open project: mapo80/iTextSharp-Monotouch Class Usage Examples

Public Methods

Method Description
Append ( string str ) : StringBuilder

appends some text to this Meta.

GetType ( string tag ) : int

Returns the name of the meta information.

IsContent ( ) : bool
IsNestable ( ) : bool
Meta ( int type, string content ) : System

Constructs a Meta.

Meta ( string tag, string content ) : System

Constructs a Meta.

Process ( IElementListener listener ) : bool

Processes the element by adding it (or the different parts) to a IElementListener.

ToString ( ) : string

Method Details

Append() public method

appends some text to this Meta.
public Append ( string str ) : StringBuilder
str string a string
return StringBuilder

GetType() public static method

Returns the name of the meta information.
public static GetType ( string tag ) : int
tag string name to match
return int

IsContent() public method

public IsContent ( ) : bool
return bool

IsNestable() public method

public IsNestable ( ) : bool
return bool

Meta() public method

Constructs a Meta.
public Meta ( int type, string content ) : System
type int the type of meta-information
content string the content
return System

Meta() public method

Constructs a Meta.
public Meta ( string tag, string content ) : System
tag string the tagname of the meta-information
content string the content
return System

Process() public method

Processes the element by adding it (or the different parts) to a IElementListener.
public Process ( IElementListener listener ) : bool
listener IElementListener the IElementListener
return bool

ToString() public method

public ToString ( ) : string
return string