C# Class RtfDomParser.RTFFontTable

Inheritance: System.Collections.CollectionBase
Mostrar archivo Open project: SourceCodeBackup/RtfDomParser Class Usage Examples

Public Methods

Method Description
Add ( int index, string f, Encoding encoding ) : RTFFont

add font

Add ( string f ) : RTFFont

add font

Add ( string f, Encoding encoding ) : RTFFont

add font

Add ( RTFFont f ) : void
Clone ( ) : RTFFontTable

close object

GetFontName ( int fontIndex ) : string

get font object special font index

IndexOf ( string f ) : int

Get font index special font name

RTFFontTable ( ) : System

initialize instance

Remove ( string f ) : void

Remove font

ToString ( ) : string
Write ( RTFWriter writer ) : void

Write font table rtf

this ( int fontIndex ) : RTFFont

get font information special index

this ( string fontName ) : RTFFont

get font object special name

Method Details

Add() public method

add font
public Add ( int index, string f, Encoding encoding ) : RTFFont
index int special font index
f string font name
encoding System.Text.Encoding
return RTFFont

Add() public method

add font
public Add ( string f ) : RTFFont
f string font name
return RTFFont

Add() public method

add font
public Add ( string f, Encoding encoding ) : RTFFont
f string font name
encoding System.Text.Encoding
return RTFFont

Add() public method

public Add ( RTFFont f ) : void
f RTFFont
return void

Clone() public method

close object
public Clone ( ) : RTFFontTable
return RTFFontTable

GetFontName() public method

get font object special font index
public GetFontName ( int fontIndex ) : string
fontIndex int font index
return string

IndexOf() public method

Get font index special font name
public IndexOf ( string f ) : int
f string font name
return int

RTFFontTable() public method

initialize instance
public RTFFontTable ( ) : System
return System

Remove() public method

Remove font
public Remove ( string f ) : void
f string font name
return void

ToString() public method

public ToString ( ) : string
return string

Write() public method

Write font table rtf
public Write ( RTFWriter writer ) : void
writer RTFWriter rtf text writer
return void

this() public method

get font information special index
public this ( int fontIndex ) : RTFFont
fontIndex int
return RTFFont

this() public method

get font object special name
public this ( string fontName ) : RTFFont
fontName string font name
return RTFFont