[To be supplied.]
[C#] In C#, this member is the indexer for the TableSettingsCollection class.
Gets the TableSetting in the collection associated with the specified DataTable.
[Visual Basic] Overloads Overridable Public Default ReadOnly Property Item(DataTable) As TableSetting
[C#] public TableSetting this[DataTable] {virtual get;}
[C++] public: __property virtual TableSetting* get_Item(DataTable*);
[JScript] TableSettingsCollection.Item (DataTable)
Gets the TableSetting in the collection at the specified index.
[Visual Basic] Overloads Overridable Public Default ReadOnly Property Item(Integer) As TableSetting
[C#] public TableSetting this[int] {virtual get;}
[C++] public: __property virtual TableSetting* get_Item(int);
[JScript] TableSettingsCollection.Item (int)
Gets the TableSetting in the collection with the specified name (not case-sensitive).
[Visual Basic] Overloads Overridable Public Default ReadOnly Property Item(String) As TableSetting
[C#] public TableSetting this[String] {virtual get;}
[C++] public: __property virtual TableSetting* get_Item(String*);
[JScript] TableSettingsCollection.Item (String)
The following example gets a TableSetting using a specified index.
Note This example shows how to use one of the overloaded versions of the Item property (TableSettingsCollection indexer). For other examples that may be available, see the individual overload topics.
[Visual Basic]
Private Sub GetTableSettingByIndex() Dim ts As TableSetting ts = myDataSetView.TableSettings(3) Debug.Print ts.RowFilter End Sub
TableSettingsCollection Class | TableSettingsCollection Members | System.Data Namespace