Examples of XDrawPageSupplier


Examples of com.sun.star.drawing.XDrawPageSupplier


    public static XDrawPage getDrawPage ( XTextDocument aDoc ) {
        XDrawPage oDP = null;
    try {
         XDrawPageSupplier oDPS = (XDrawPageSupplier)
                        UnoRuntime.queryInterface(XDrawPageSupplier.class,aDoc);
            oDP = (XDrawPage) oDPS.getDrawPage();
    } catch ( Exception e ) {
      throw new IllegalArgumentException( "Couldn't get drawpage" );
    }
        return oDP;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.