C# Class Adf.Web.UI.TwoColumnPanel

Represents two column compound panel.
Inheritance: CompoundPanel
Datei anzeigen Open project: NLADP/ADF

Protected Properties

Property Type Description
linecount int
split int

Protected Methods

Method Description
FinaliseRendering ( System.Web.UI.HtmlControls.HtmlTable table ) : void

Finalizes the rendering process.

InitRendering ( System.Web.UI.HtmlControls.HtmlTable table ) : void

Computes at which point the rows should be added to the right panel.

RenderRow ( System.Web.UI.HtmlControls.HtmlTable table, Control controls ) : void

Renders a row containing control cells to a table.

The rows are initially added to the left column and when it's full, they are added to the right column

RenderRow ( System.Web.UI.HtmlControls.HtmlTable table, Control label, Control controls ) : void

Renders a row containing label and control cells to a table.

The rows are initially added to the left column and when it's full, they are added to the right column

Method Details

FinaliseRendering() protected method

Finalizes the rendering process.
protected FinaliseRendering ( System.Web.UI.HtmlControls.HtmlTable table ) : void
table System.Web.UI.HtmlControls.HtmlTable The table.
return void

InitRendering() protected method

Computes at which point the rows should be added to the right panel.
protected InitRendering ( System.Web.UI.HtmlControls.HtmlTable table ) : void
table System.Web.UI.HtmlControls.HtmlTable The table.
return void

RenderRow() protected method

Renders a row containing control cells to a table.
The rows are initially added to the left column and when it's full, they are added to the right column
protected RenderRow ( System.Web.UI.HtmlControls.HtmlTable table, Control controls ) : void
table System.Web.UI.HtmlControls.HtmlTable The output table.
controls System.Web.UI.Control The collection of controls.
return void

RenderRow() protected method

Renders a row containing label and control cells to a table.
The rows are initially added to the left column and when it's full, they are added to the right column
protected RenderRow ( System.Web.UI.HtmlControls.HtmlTable table, Control label, Control controls ) : void
table System.Web.UI.HtmlControls.HtmlTable The output table.
label System.Web.UI.Control The label.
controls System.Web.UI.Control The collection of controls.
return void

Property Details

linecount protected_oe property

A counter for the current line number.
protected int linecount
return int

split protected_oe property

The line number from which point the right panel is used.
protected int split
return int