Метод | Описание | |
---|---|---|
BeginBody ( ) : void |
Begin the HTML body.
|
|
BeginHTML ( ) : void |
Begin an HTML tag.
|
|
BeginList ( ) : void |
Begin a list.
|
|
BeginPara ( ) : void |
Begin an HTML para.
|
|
BeginRow ( ) : void |
Begin a row of a table.
|
|
BeginTable ( ) : void |
Begin a table.
|
|
BeginTableInCell ( int colSpan ) : void |
Begin a new table in a cell.
|
|
Bold ( String str ) : void |
Display in bold.
|
|
Cell ( String head ) : void |
Add a cell, no column span.
|
|
Cell ( String head, int colSpan ) : void |
Add a cell to a table.
|
|
Clear ( ) : void |
Clear the report.
|
|
Encode ( String str ) : String |
Encode a string for HTML.
|
|
EndBody ( ) : void |
End the HTML body.
|
|
EndHTML ( ) : void |
End an HTML tag.
|
|
EndList ( ) : void |
End a list.
|
|
EndPara ( ) : void |
End an HTML para.
|
|
EndRow ( ) : void |
End a row of a table.
|
|
EndTable ( ) : void |
End a table.
|
|
EndTableInCell ( ) : void |
End a table in a cell.
|
|
H1 ( String title ) : void |
Create a H1.
|
|
H2 ( String title ) : void |
Add a H2.
|
|
H3 ( String title ) : void |
Add a H3.
|
|
HTMLReport ( ) : System |
Construct the object.
|
|
Header ( String head ) : void |
Add a header cell.
|
|
ListItem ( String str ) : void |
Add a list item.
|
|
Para ( String str ) : void |
Display a para.
|
|
TablePair ( String name, String v ) : void |
Add a name-value pair to a table. This includes a row.
|
|
Title ( String str ) : void |
Set the title.
|
|
ToString ( ) : String |
Convert the report to a string.
|
public BeginTableInCell ( int colSpan ) : void | ||
colSpan | int | The column span. |
Результат | void |
public Cell ( String head ) : void | ||
head | String | The head of that call. |
Результат | void |
public Cell ( String head, int colSpan ) : void | ||
head | String | The text for the cell. |
colSpan | int | The col span. |
Результат | void |
public static Encode ( String str ) : String | ||
str | String | The string to encode. |
Результат | String |
public Header ( String head ) : void | ||
head | String | The text to use. |
Результат | void |
public ListItem ( String str ) : void | ||
str | String | The item added. |
Результат | void |
public Para ( String str ) : void | ||
str | String | The para to display. |
Результат | void |
public TablePair ( String name, String v ) : void | ||
name | String | The name. |
v | String | The value. |
Результат | void |