ApiExamples.ExDocumentBuilder.DeleteRowEx C# (CSharp) Метод

DeleteRowEx() приватный Метод

private DeleteRowEx ( ) : void
Результат void
        public void DeleteRowEx()
        {
            //ExStart
            //ExFor:DocumentBuilder.DeleteRow
            //ExSummary:Shows how to delete a row from a table.
            Document doc = new 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
        }
ExDocumentBuilder