/* ** GENEREATED FILE - DO NOT MODIFY ** */ package com.wilutions.mslib.msforms.impl; import com.wilutions.com.*; @SuppressWarnings("all") @CoClass(guid="{9585487A-F8A5-CA8E-10C9-694DA54A32E7}") public class IWHTMLSubmitButtonImpl extends Dispatch implements com.wilutions.mslib.msforms.IWHTMLSubmitButton { @DeclDISPID(601) public void setAction(final String value) throws ComException { assert(value != null); this._dispatchCall(601,"Action", DISPATCH_PROPERTYPUT,value); } @DeclDISPID(601) public String getAction() throws ComException { final Object obj = this._dispatchCall(601,"Action", DISPATCH_PROPERTYGET,null); if (obj == null) return null; return (String)obj; } @DeclDISPID(602) public void setCaption(final String value) throws ComException { assert(value != null); this._dispatchCall(602,"Caption", DISPATCH_PROPERTYPUT,value); } @DeclDISPID(602) public String getCaption() throws ComException { final Object obj = this._dispatchCall(602,"Caption", DISPATCH_PROPERTYGET,null); if (obj == null) return null; return (String)obj; } @DeclDISPID(603) public void setEncoding(final String value) throws ComException { assert(value != null); this._dispatchCall(603,"Encoding", DISPATCH_PROPERTYPUT,value); } @DeclDISPID(603) public String getEncoding() throws ComException { final Object obj = this._dispatchCall(603,"Encoding", DISPATCH_PROPERTYGET,null); if (obj == null) return null; return (String)obj; } @DeclDISPID(604) public void setMethod(final String value) throws ComException { assert(value != null); this._dispatchCall(604,"Method", DISPATCH_PROPERTYPUT,value); } @DeclDISPID(604) public String getMethod() throws ComException { final Object obj = this._dispatchCall(604,"Method", DISPATCH_PROPERTYGET,null); if (obj == null) return null; return (String)obj; } @DeclDISPID(-541) public void setHTMLName(final String value) throws ComException { assert(value != null); this._dispatchCall(-541,"HTMLName", DISPATCH_PROPERTYPUT,value); } @DeclDISPID(-541) public String getHTMLName() throws ComException { final Object obj = this._dispatchCall(-541,"HTMLName", DISPATCH_PROPERTYGET,null); if (obj == null) return null; return (String)obj; } public IWHTMLSubmitButtonImpl(String progId) throws ComException { super(progId, "{5512D111-5CC6-11CF-8D67-00AA00BDCE1D}"); } protected IWHTMLSubmitButtonImpl(long ndisp) { super(ndisp); } public String toString() { return "[IWHTMLSubmitButtonImpl" + super.toString() + "]"; } }