Exemplo n.º 1
0
        public void DeleteRowEx()
        {
            //ExStart
            //ExFor:DeleteRow
            //ExId:DeleteRowEx
            //ExSummary:Shows how to apply DeleteRow to a table.
            Aspose.Words.Document doc = new Aspose.Words.Document(ExDir + "DocumentBuilder.DocWithTable.doc");
            DocumentBuilder builder = new DocumentBuilder(doc);

            builder.DeleteRow(0, 0);
            //ExEnd
        }
Exemplo n.º 2
0
        public void DeleteRowEx()
        {
            //ExStart
            //ExFor:DocumentBuilder.DeleteRow
            //ExSummary:Shows how to delete a row from a table.
            Aspose.Words.Document doc = new Aspose.Words.Document(MyDir + "DocumentBuilder.DocWithTable.doc");
            DocumentBuilder builder = new DocumentBuilder(doc);

            // Delete the first row of the first table in the document.
            builder.DeleteRow(0, 0);
            //ExEnd
        }