System.Web.UI.WebControls Namespace Table Class
Initializes a new instance of the Table class.
[ VB ]
Public Sub New ( )
[ C# ]
public Table ( );
[ C++ ]
public: Table ( );
[ JScript ]
public function Table ( );
Use this constructor to initialize a new instance of the Table class.
The following example demonstrates how to initialize a new instance of the Table class.
void Page_Load ( Object src, EventArgs e ) {
Table myTable = new Table ( );
}
Sub Page_Load ( src As Object, e As EventArgs )
Dim myTable As New Table ( )
End Sub |
|
C# |
VB |
Table Members