Aspose.Words.Examples.CSharp.Programming_Documents.Working_With_Document.AddRemoveColumn.Column.FromIndex C# (CSharp) Method

FromIndex() public static method

Returns a new column facade from the table and supplied zero-based index.
public static FromIndex ( Table table, int columnIndex ) : Column
table Table
columnIndex int
return Column
            public static Column FromIndex(Table table, int columnIndex)
            {
                return new Column(table, columnIndex);
            }