System.Windows.Forms.TableRow.this C# (CSharp) Method

this() public method

public this ( int column ) : object
column int
return object
        public object this[int column]
        {
            get { return Items[column]; }
            set { Items[column] = value; }
        }