Package com.aspose.words

Examples of com.aspose.words.Range


public class AsposeRanges
{
  public static void main(String[] args) throws Exception
  {
    Document doc = new Document("data/document.doc");
    Range range = doc.getRange();
   
    String text = range.getText();
    System.out.println("Range: " + text);
  }
View Full Code Here

TOP

Related Classes of com.aspose.words.Range

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.