public void SectionsDeleteSectionContent()
 {
     //ExStart
     //ExFor:Section.ClearContent
     //ExId:SectionsDeleteSectionContent
     //ExSummary:Shows how to delete main content of a section.
     Aspose.Words.Document doc     = new Aspose.Words.Document(MyDir + "Document.doc");
     Aspose.Words.Section  section = doc.Sections[0];
     section.ClearContent();
     //ExEnd
 }