Clone
Section.Clone method
Creates a duplicate of this section.
public Section Clone()
Examples
Shows how to add and remove sections in a document.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.Write("Section 1");
builder.InsertBreak(BreakType.SectionBreakNewPage);
builder.Write("Section 2");
Assert.That(doc.GetText().Trim(), Is.EqualTo("Section 1\x000cSection 2"));
// Delete the first section from the document.
doc.Sections.RemoveAt(0);
Assert.That(doc.GetText().Trim(), Is.EqualTo("Section 2"));
// Append a copy of what is now the first section to the end of the document.
int lastSectionIdx = doc.Sections.Count - 1;
Section newSection = doc.Sections[lastSectionIdx].Clone();
doc.Sections.Add(newSection);
Assert.That(doc.GetText().Trim(), Is.EqualTo("Section 2\x000cSection 2"));
See Also
- class Section
- namespace Aspose.Words
- assembly Aspose.Words