Examples of PresentationEventListenerElement


Examples of org.odftoolkit.odfdom.dom.element.presentation.PresentationEventListenerElement

   * @param presentationActionValue  the <code>String</code> value of <code>PresentationActionAttribute</code>, see {@odf.attribute  presentation:action} at specification
   * @param scriptEventNameValue  the <code>String</code> value of <code>ScriptEventNameAttribute</code>, see {@odf.attribute  script:event-name} at specification
   * @return the element {@odf.element presentation:event-listener}
   */
   public PresentationEventListenerElement newPresentationEventListenerElement(String presentationActionValue, String scriptEventNameValue) {
    PresentationEventListenerElement presentationEventListener = ((OdfFileDom) this.ownerDocument).newOdfElement(PresentationEventListenerElement.class);
    presentationEventListener.setPresentationActionAttribute(presentationActionValue);
    presentationEventListener.setScriptEventNameAttribute(scriptEventNameValue);
    this.appendChild(presentationEventListener);
    return presentationEventListener;
  }
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.