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
Afficher le fichier Open project: mapo80/iTextSharp-Monotouch Class Usage Examples

Méthodes publiques

Méthode 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 méthode

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

GetType() public static méthode

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

IsContent() public méthode

public IsContent ( ) : bool
Résultat bool

IsNestable() public méthode

public IsNestable ( ) : bool
Résultat bool

Meta() public méthode

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

Meta() public méthode

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

Process() public méthode

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

ToString() public méthode

public ToString ( ) : string
Résultat string