MigraDoc.DocumentObjectModel.Tables.Column.this C# (CSharp) Method

this() public method

Gets a cell by its row index. The first cell has index 0.
public this ( int index ) : MigraDoc.DocumentObjectModel.Tables.Cell
index int
return MigraDoc.DocumentObjectModel.Tables.Cell
    public Cell this[int index]
    {
      get
      {
        //Check.ArgumentOutOfRange(index >= 0 && index < table.Rows.Count, "index");
        return Table.Rows[index][this.index];
      }
    }