Package com.sun.star.sheet

Examples of com.sun.star.sheet.SingleReference


    public String getCellNameWithSpaces(){
        return getController().createStringWithSpace(getCellName(), 15);
    }

    public void setSheetName(){
        SingleReference ref = (SingleReference)m_cellToken.Data;
        XSpreadsheet sheet = m_Controller.getSheetByIndex(ref.Sheet);
        XNamed xNamed = (XNamed)UnoRuntime.queryInterface(XNamed.class, sheet);
        m_sheetName = xNamed.getName();
    }
View Full Code Here

TOP

Related Classes of com.sun.star.sheet.SingleReference

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.