RangeDelete Method |
Namespace: Aspose.Words
// Insert two sections into a blank document Document doc = new Document(); DocumentBuilder builder = new DocumentBuilder(doc); builder.Write("Section 1. "); builder.InsertBreak(BreakType.SectionBreakContinuous); builder.Write("Section 2."); // Verify the whole text of the document Assert.AreEqual("Section 1. \fSection 2.", doc.GetText().Trim()); // Delete the first section from the document doc.Sections[0].Range.Delete(); // Check the first section was deleted by looking at the text of the whole document again Assert.AreEqual("Section 2.", doc.GetText().Trim());