C# Класс Encog.Util.HTMLReport

A utility for generating HTML reports.
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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.

Описание методов

BeginBody() публичный Метод

Begin the HTML body.
public BeginBody ( ) : void
Результат void

BeginHTML() публичный Метод

Begin an HTML tag.
public BeginHTML ( ) : void
Результат void

BeginList() публичный Метод

Begin a list.
public BeginList ( ) : void
Результат void

BeginPara() публичный Метод

Begin an HTML para.
public BeginPara ( ) : void
Результат void

BeginRow() публичный Метод

Begin a row of a table.
public BeginRow ( ) : void
Результат void

BeginTable() публичный Метод

Begin a table.
public BeginTable ( ) : void
Результат void

BeginTableInCell() публичный Метод

Begin a new table in a cell.
public BeginTableInCell ( int colSpan ) : void
colSpan int The column span.
Результат void

Bold() публичный Метод

Display in bold.
public Bold ( String str ) : void
str String
Результат void

Cell() публичный Метод

Add a cell, no column span.
public Cell ( String head ) : void
head String The head of that call.
Результат void

Cell() публичный Метод

Add a cell to a table.
public Cell ( String head, int colSpan ) : void
head String The text for the cell.
colSpan int The col span.
Результат void

Clear() публичный Метод

Clear the report.
public Clear ( ) : void
Результат void

Encode() публичный статический Метод

Encode a string for HTML.
public static Encode ( String str ) : String
str String The string to encode.
Результат String

EndBody() публичный Метод

End the HTML body.
public EndBody ( ) : void
Результат void

EndHTML() публичный Метод

End an HTML tag.
public EndHTML ( ) : void
Результат void

EndList() публичный Метод

End a list.
public EndList ( ) : void
Результат void

EndPara() публичный Метод

End an HTML para.
public EndPara ( ) : void
Результат void

EndRow() публичный Метод

End a row of a table.
public EndRow ( ) : void
Результат void

EndTable() публичный Метод

End a table.
public EndTable ( ) : void
Результат void

EndTableInCell() публичный Метод

End a table in a cell.
public EndTableInCell ( ) : void
Результат void

H1() публичный Метод

Create a H1.
public H1 ( String title ) : void
title String
Результат void

H2() публичный Метод

Add a H2.
public H2 ( String title ) : void
title String The title.
Результат void

H3() публичный Метод

Add a H3.
public H3 ( String title ) : void
title String The title.
Результат void

HTMLReport() публичный Метод

Construct the object.
public HTMLReport ( ) : System
Результат System

Header() публичный Метод

Add a header cell.
public Header ( String head ) : void
head String The text to use.
Результат void

ListItem() публичный Метод

Add a list item.
public ListItem ( String str ) : void
str String The item added.
Результат void

Para() публичный Метод

Display a para.
public Para ( String str ) : void
str String The para to display.
Результат void

TablePair() публичный Метод

Add a name-value pair to a table. This includes a row.
public TablePair ( String name, String v ) : void
name String The name.
v String The value.
Результат void

Title() публичный Метод

Set the title.
public Title ( String str ) : void
str String The title.
Результат void

ToString() публичный Метод

Convert the report to a string.
public ToString ( ) : String
Результат String