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

Remove() public method

Removes the column from the table.
public Remove ( ) : void
return void
            public void Remove()
            {
                foreach (Cell cell in Cells)
                    cell.Remove();
            }