Tr3v.Web.UI.TableBuilder Reference
This article is correct as of version 1.0.0.3 and was last updated 22nd August 2008.
« Back to application page
Applications
Site/Blog
Tutorials
Assemblies
Digg.Com
DiggButton
DotNetKicks.Com
DNKImage
DNKLink
Tr3v.RSS
Category
Channel
Enclosure
Guid
Image
Item
Languages
MimeTypes
Source
Tr3v.Web.UI
TableBuilder
Requirements
Namespace: Tr3v.Web.UI
Assembly: TableBuilder.cs
Tr3v.Web.UI.TableBuilder
public class TableBuilder
TableBuilder Constructors
public TableBuilder();
Instantiate a new instance of the TableBuilder class.
TableBuilder Properties
public CssClass {get; set;}
Gets or sets the css class of the html table.
public Id {get; set;}
Gets or sets the Id of the html table.
public RightAlignNumericColumns {get; set;}
Gets or sets a value indicating whether numeric columns should be right aligned.
public Table {get; set;}
Gets the formatted table to be displayed a table on a Web page.
TableBuilder Methods
public void AddHeaderRow(params string[] values);
Add a table header (<th></th>)
values
Values to be added as table headers.
public void AddRow(params string[] values);
Add a table row (<td></td>)
values
Values to be added as table rows.
private void RightAlignRowCells(TableRow currentRow);
Adds the css markup to cells in this row that should be right aligned.
currentRow
The row to align the cells within.