/* ** GENEREATED FILE - DO NOT MODIFY ** */
package com.wilutions.mslib.office.impl;
import com.wilutions.com.*;
@SuppressWarnings("all")
@CoClass(guid="{C09B9A18-A463-DB41-5DAE-69E7A5F7FCBC}")
public class WebComponentPropertiesImpl extends Dispatch implements com.wilutions.mslib.office.WebComponentProperties {
@DeclDISPID(1) public IDispatch getShape() throws ComException {
final Object obj = this._dispatchCall(1,"Shape", DISPATCH_PROPERTYGET,null);
if (obj == null) return null;
return (IDispatch)obj;
}
@DeclDISPID(2) public String getName() throws ComException {
final Object obj = this._dispatchCall(2,"Name", DISPATCH_PROPERTYGET,null);
if (obj == null) return null;
return (String)obj;
}
@DeclDISPID(2) public void setName(final String value) throws ComException {
assert(value != null);
this._dispatchCall(2,"Name", DISPATCH_PROPERTYPUT,value);
}
@DeclDISPID(3) public String getURL() throws ComException {
final Object obj = this._dispatchCall(3,"URL", DISPATCH_PROPERTYGET,null);
if (obj == null) return null;
return (String)obj;
}
@DeclDISPID(3) public void setURL(final String value) throws ComException {
assert(value != null);
this._dispatchCall(3,"URL", DISPATCH_PROPERTYPUT,value);
}
@DeclDISPID(4) public String getHTML() throws ComException {
final Object obj = this._dispatchCall(4,"HTML", DISPATCH_PROPERTYGET,null);
if (obj == null) return null;
return (String)obj;
}
@DeclDISPID(4) public void setHTML(final String value) throws ComException {
assert(value != null);
this._dispatchCall(4,"HTML", DISPATCH_PROPERTYPUT,value);
}
@DeclDISPID(5) public String getPreviewGraphic() throws ComException {
final Object obj = this._dispatchCall(5,"PreviewGraphic", DISPATCH_PROPERTYGET,null);
if (obj == null) return null;
return (String)obj;
}
@DeclDISPID(5) public void setPreviewGraphic(final String value) throws ComException {
assert(value != null);
this._dispatchCall(5,"PreviewGraphic", DISPATCH_PROPERTYPUT,value);
}
@DeclDISPID(6) public String getPreviewHTML() throws ComException {
final Object obj = this._dispatchCall(6,"PreviewHTML", DISPATCH_PROPERTYGET,null);
if (obj == null) return null;
return (String)obj;
}
@DeclDISPID(6) public void setPreviewHTML(final String value) throws ComException {
assert(value != null);
this._dispatchCall(6,"PreviewHTML", DISPATCH_PROPERTYPUT,value);
}
@DeclDISPID(7) public Integer getWidth() throws ComException {
final Object obj = this._dispatchCall(7,"Width", DISPATCH_PROPERTYGET,null);
if (obj == null) return null;
return (Integer)obj;
}
@DeclDISPID(7) public void setWidth(final Integer value) throws ComException {
assert(value != null);
this._dispatchCall(7,"Width", DISPATCH_PROPERTYPUT,value);
}
@DeclDISPID(8) public Integer getHeight() throws ComException {
final Object obj = this._dispatchCall(8,"Height", DISPATCH_PROPERTYGET,null);
if (obj == null) return null;
return (Integer)obj;
}
@DeclDISPID(8) public void setHeight(final Integer value) throws ComException {
assert(value != null);
this._dispatchCall(8,"Height", DISPATCH_PROPERTYPUT,value);
}
@DeclDISPID(9) public String getTag() throws ComException {
final Object obj = this._dispatchCall(9,"Tag", DISPATCH_PROPERTYGET,null);
if (obj == null) return null;
return (String)obj;
}
@DeclDISPID(9) public void setTag(final String value) throws ComException {
assert(value != null);
this._dispatchCall(9,"Tag", DISPATCH_PROPERTYPUT,value);
}
public WebComponentPropertiesImpl(String progId) throws ComException {
super(progId, "{000C0373-0000-0000-C000-000000000046}");
}
protected WebComponentPropertiesImpl(long ndisp) {
super(ndisp);
}
public String toString() {
return "[WebComponentPropertiesImpl" + super.toString() + "]";
}
}