Skip to content

Delete Ranges in Document

shoaibkhan-aspose edited this page Jun 6, 2014 · 2 revisions

Apache POI WP

doc.getRange().getSection(0).delete();		
String text = doc.getRange().text();

Aspose.Words

doc.getSections().get(0).getRange().delete();
String text = doc.getRange().getText();

Download Source Code

Clone this wiki locally