Examples of XTitled


Examples of com.sun.star.chart2.XTitled

    public void testTitle()
    {
        try
        {
            // set title at new chart
            XTitled xTitled = (XTitled) UnoRuntime.queryInterface(
                XTitled.class, mxChartModel );

            // set title via new API
            XTitle xTitle = setTitle( xTitled, "Sample", "@main-title" );
View Full Code Here

Examples of com.sun.star.chart2.XTitled

                (com.sun.star.chart2.XChartDocument) UnoRuntime.queryInterface(
                    com.sun.star.chart2.XChartDocument.class,
                    mxOldDoc );

            // set title at new chart
            XTitled xTitled = (XTitled) UnoRuntime.queryInterface(
                XTitled.class, xNewDoc.getDiagram() );

            // set title via new API
            setTitle( xTitled, "Sub", "@sub-title" );
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.