System.Data.DataViewSettingCollection.this C# (CSharp) Method

this() public method

public this ( int index ) : DataViewSetting
index int
return DataViewSetting
        public virtual DataViewSetting this[int index]
        {
            get
            {
                DataTable dt = GetTable(index);
                if (dt != null)
                {
                    return this[dt];
                }
                return null;
            }
            set
            {
                DataTable dt = GetTable(index);
                if (dt != null)
                {
                    this[dt] = value;
                }
            }
        }

Same methods

DataViewSettingCollection::this ( DataTable table ) : DataViewSetting
DataViewSettingCollection::this ( string tableName ) : DataViewSetting