DataTable::TableName Property

 

Gets or sets the name of the DataTable.

Namespace:   System.Data
Assembly:  System.Data (in System.Data.dll)

public:
property String^ TableName {
	String^ get();
	void set(String^ value);
}

Property Value

Type: System::String^

The name of the DataTable.

Exception Condition
ArgumentException

null or empty string ("") is passed in and this table belongs to a collection.

DuplicateNameException

The table belongs to a collection that already has a table with the same name. (Comparison is case-sensitive).

The TableName is used to return this table from the parent DataSet object's DataTableCollection (returned by the Tables property).

The following example prints the TableName for each table in a collection of DataTable objects.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 1.1
Return to top
Show: