System.Web.UI.HtmlControls Namespace HtmlTable Class
Initializes a new instance of an HtmlTable class.
[ VB ]
Public Sub New ( )
[ C# ]
public HtmlTable ( );
[ C++ ]
public: HtmlTable ( );
[ JScript ]
public function HtmlTable ( );
Use this constructor to create and initialize a new instance of the HtmlTable control.
This constructor sets the initial TagName property value to table.
The below code shows how to create a new instance of an HtmlTable class.
HtmlTable myTable = new HtmlTable ( );
Dim myTable As New HtmlTable ( ) |
|
C# |
VB |
HtmlTable Members