Menu

Insert Before and After Ranges

Shoaib

Apache POI WP - Insert Before and After Ranges

doc.getRange().getSection(0).insertBefore("Apache Inserted THIS Text before the below section");
String text = doc.getRange().text();

Aspose.Words

compositeNode.getParentNode().insertBefore(newChildNode, refChildNode);

Download Source Code