C# 클래스 Encog.Util.HTMLReport

A utility for generating HTML reports.
파일 보기 프로젝트 열기: encog/encog-silverlight-core 1 사용 예제들

공개 메소드들

메소드 설명
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