Package org.eclipse.swt.ole.win32

Examples of org.eclipse.swt.ole.win32.OleFrame


    Variant result = oleAutomation.getProperty(dispID);
    return (result != null) ? result.getBoolean() : false;
  }

  public boolean setBooleanProperty(int dispID, boolean value) {
    return oleAutomation.setProperty(dispID, new Variant(value));
  }
View Full Code Here


  public boolean setBooleanProperty(int dispID, boolean value) {
    return oleAutomation.setProperty(dispID, new Variant(value));
  }

  public String getStringProperty(int dispID) {
    Variant result = oleAutomation.getProperty(dispID);
    return (result != null) ? result.getString() : "";
  }
View Full Code Here

    Variant result = oleAutomation.getProperty(dispID);
    return (result != null) ? result.getString() : "";
  }

  public boolean setStringProperty(int dispID, String value) {
    return oleAutomation.setProperty(dispID, new Variant(value));
  }
View Full Code Here

  public boolean setStringProperty(int dispID, String value) {
    return oleAutomation.setProperty(dispID, new Variant(value));
  }

  public float getFloatProperty(int dispID) {
    Variant result = oleAutomation.getProperty(dispID);
    return (result != null) ? result.getFloat() : 0.0f;
  }
View Full Code Here

    Variant result = oleAutomation.getProperty(dispID);
    return (result != null) ? result.getFloat() : 0.0f;
  }

  public boolean setFloatProperty(int dispID, float value) {
    return oleAutomation.setProperty(dispID, new Variant(value));
  }
View Full Code Here

  public boolean setFloatProperty(int dispID, float value) {
    return oleAutomation.setProperty(dispID, new Variant(value));
  }

  public OleAutomation getAutomationProperty(int dispID) {
    Variant result = oleAutomation.getProperty(dispID);
    return (result != null) ? result.getAutomation() : null;
  }
View Full Code Here

    Variant result = oleAutomation.getProperty(dispID);
    return (result != null) ? result.getAutomation() : null;
  }

  public OleObject getObjectProperty(int dispID) {
    Variant result = oleAutomation.getProperty(dispID);
    return (result != null) ? new OleObject(result.getAutomation(), false)
        : null;
  }
View Full Code Here

  public boolean setVariantProperty(String name, Variant propValue) {
    return oleAutomation.setProperty(getDispID(name), propValue);
  }

  public int getIntegerProperty(String name) {
    Variant result = getVariantProperty(name);
    return (result != null) ? result.getInt() : -1;
  }
View Full Code Here

    Variant result = getVariantProperty(name);
    return (result != null) ? result.getInt() : -1;
  }

  public boolean setIntegerProperty(String name, int value) {
    return setVariantProperty(name, new Variant(value));
  }
View Full Code Here

  public boolean setIntegerProperty(String name, int value) {
    return setVariantProperty(name, new Variant(value));
  }

  public boolean getBooleanProperty(String name) {
    Variant result = getVariantProperty(name);
    return (result != null) ? result.getBoolean() : false;
  }
View Full Code Here

TOP

Related Classes of org.eclipse.swt.ole.win32.OleFrame

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.