Examples of hideDependents()


Examples of com.sun.star.sheet.XSheetAuditing.hideDependents()

        CellAddress addr = getListBoxSelectedItemAddress();
        XSheetAuditing xSheetAuditing = (XSheetAuditing)UnoRuntime.queryInterface( XSheetAuditing.class, getController().getActiveSheet() );
        if( bool )
            xSheetAuditing.showDependents(addr);
        else
            xSheetAuditing.hideDependents(addr);
    }

    public void clearArrows(){
        XSheetAuditing xSheetAuditing = null;
        xSheetAuditing = (XSheetAuditing) UnoRuntime.queryInterface( XSheetAuditing.class, getController().getActiveSheet() );
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.