C# Class iTextSharp.text.ListItem

A ListItem is a Paragraph that can be added to a List.
Inheritance: Paragraph
ファイルを表示 Open project: mapo80/iTextSharp-Monotouch Class Usage Examples

Protected Properties

Property Type Description
symbol Chunk

Public Methods

Method Description
AdjustListSymbolFont ( ) : void
ListItem ( ) : System

Constructs a ListItem.

ListItem ( Chunk chunk ) : System

Constructs a ListItem with a certain Chunk.

ListItem ( Phrase phrase ) : System

Constructs a ListItem with a certain Phrase.

ListItem ( float leading ) : System

Constructs a ListItem with a certain leading.

ListItem ( float leading, Chunk chunk ) : System

Constructs a ListItem with a certain Chunk and a certain leading.

ListItem ( float leading, string str ) : System

Constructs a ListItem with a certain string and a certain leading.

ListItem ( float leading, string str, Font font ) : System

Constructs a ListItem with a certain leading, string and Font.

ListItem ( string str ) : System

Constructs a ListItem with a certain string.

ListItem ( string str, Font font ) : System

Constructs a ListItem with a certain string and a certain Font.

SetIndentationLeft ( float indentation, bool autoindent ) : void

Method Details

AdjustListSymbolFont() public method

public AdjustListSymbolFont ( ) : void
return void

ListItem() public method

Constructs a ListItem.
public ListItem ( ) : System
return System

ListItem() public method

Constructs a ListItem with a certain Chunk.
public ListItem ( Chunk chunk ) : System
chunk Chunk a Chunk
return System

ListItem() public method

Constructs a ListItem with a certain Phrase.
public ListItem ( Phrase phrase ) : System
phrase Phrase a Phrase
return System

ListItem() public method

Constructs a ListItem with a certain leading.
public ListItem ( float leading ) : System
leading float the leading
return System

ListItem() public method

Constructs a ListItem with a certain Chunk and a certain leading.
public ListItem ( float leading, Chunk chunk ) : System
leading float the leading
chunk Chunk a Chunk
return System

ListItem() public method

Constructs a ListItem with a certain string and a certain leading.
public ListItem ( float leading, string str ) : System
leading float the leading
str string a string
return System

ListItem() public method

Constructs a ListItem with a certain leading, string and Font.
public ListItem ( float leading, string str, Font font ) : System
leading float the leading
str string a string
font Font a Font
return System

ListItem() public method

Constructs a ListItem with a certain string.
public ListItem ( string str ) : System
str string a string
return System

ListItem() public method

Constructs a ListItem with a certain string and a certain Font.
public ListItem ( string str, Font font ) : System
str string a string
font Font a string
return System

SetIndentationLeft() public method

public SetIndentationLeft ( float indentation, bool autoindent ) : void
indentation float
autoindent bool
return void

Property Details

symbol protected_oe property

this is the symbol that wil proceed the listitem.
protected Chunk,iTextSharp.text symbol
return Chunk