Examples of XScrollBar


Examples of com.sun.star.awt.XScrollBar

    }

    private void adjustScrollBar() {


        XScrollBar sc = (XScrollBar) UnoRuntime.queryInterface(
                                XScrollBar.class, tEnv.getTestObject());

        sc.setValue(500);
       
        shortWait();

        XAccessible acc = (XAccessible) UnoRuntime.queryInterface(
                                  XAccessible.class, tEnv.getTestObject());
View Full Code Here

Examples of com.sun.star.awt.XScrollBar

    try{
  Object oScrollModel = insertControlModel("com.sun.star.awt.UnoControlScrollBarModel", sName, sProperties, sValues);
        XPropertySet xPSet = (XPropertySet) UnoRuntime.queryInterface(XPropertySet.class, oScrollModel);
        xPSet.setPropertyValue("Name", sName);
        Object oScrollBar = xDlgContainer.getControl( new String(sName));
        XScrollBar xScrollBar = (XScrollBar) UnoRuntime.queryInterface( XScrollBar.class, oScrollBar);
        xScrollBar.addAdjustmentListener(xAdjustmentListener);
        Integer ControlKey = new Integer(iControlKey);
  if (ControlList != null)
      ControlList.put(sName, ControlKey);
  return xScrollBar;
    }
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.