Examples of showDependents()


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

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

    public void clearArrows(){
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.