net.rgielen.com4j.office2010.office.WebComponent Maven / Gradle / Ivy
The newest version!
package net.rgielen.com4j.office2010.office ;
import com4j.*;
@IID("{000CD100-0000-0000-C000-000000000046}")
public interface WebComponent extends Com4jObject {
// Methods:
/**
*
* Getter method for the COM property "Shape"
*
* @return Returns a value of type com4j.Com4jObject
*/
@DISPID(1) //= 0x1. The runtime will prefer the VTID if present
@VTID(7)
@ReturnValue(type=NativeType.Dispatch)
com4j.Com4jObject shape();
/**
*
* Getter method for the COM property "URL"
*
* @return Returns a value of type java.lang.String
*/
@DISPID(2) //= 0x2. The runtime will prefer the VTID if present
@VTID(8)
java.lang.String url();
/**
*
* Setter method for the COM property "URL"
*
* @param retValue Mandatory java.lang.String parameter.
*/
@DISPID(2) //= 0x2. The runtime will prefer the VTID if present
@VTID(9)
void url(
java.lang.String retValue);
/**
*
* Getter method for the COM property "HTML"
*
* @return Returns a value of type java.lang.String
*/
@DISPID(3) //= 0x3. The runtime will prefer the VTID if present
@VTID(10)
java.lang.String html();
/**
*
* Setter method for the COM property "HTML"
*
* @param retValue Mandatory java.lang.String parameter.
*/
@DISPID(3) //= 0x3. The runtime will prefer the VTID if present
@VTID(11)
void html(
java.lang.String retValue);
/**
*
* Getter method for the COM property "Name"
*
* @return Returns a value of type java.lang.String
*/
@DISPID(4) //= 0x4. The runtime will prefer the VTID if present
@VTID(12)
java.lang.String name();
/**
*
* Setter method for the COM property "Name"
*
* @param retValue Mandatory java.lang.String parameter.
*/
@DISPID(4) //= 0x4. The runtime will prefer the VTID if present
@VTID(13)
void name(
java.lang.String retValue);
/**
*
* Getter method for the COM property "Width"
*
* @return Returns a value of type int
*/
@DISPID(5) //= 0x5. The runtime will prefer the VTID if present
@VTID(14)
int width();
/**
*
* Setter method for the COM property "Width"
*
* @param retValue Mandatory int parameter.
*/
@DISPID(5) //= 0x5. The runtime will prefer the VTID if present
@VTID(15)
void width(
int retValue);
/**
*
* Getter method for the COM property "Height"
*
* @return Returns a value of type int
*/
@DISPID(6) //= 0x6. The runtime will prefer the VTID if present
@VTID(16)
int height();
/**
*
* Setter method for the COM property "Height"
*
* @param retValue Mandatory int parameter.
*/
@DISPID(6) //= 0x6. The runtime will prefer the VTID if present
@VTID(17)
void height(
int retValue);
/**
* @param placeHolderGraphic Mandatory java.lang.String parameter.
*/
@DISPID(7) //= 0x7. The runtime will prefer the VTID if present
@VTID(18)
void setPlaceHolderGraphic(
java.lang.String placeHolderGraphic);
/**
*/
@DISPID(8) //= 0x8. The runtime will prefer the VTID if present
@VTID(19)
void commit();
/**
*/
@DISPID(9) //= 0x9. The runtime will prefer the VTID if present
@VTID(20)
void revert();
// Properties:
}