net.rgielen.com4j.office2010.vba._Component Maven / Gradle / Ivy
The newest version!
package net.rgielen.com4j.office2010.vba ;
import com4j.*;
@IID("{0002E163-0000-0000-C000-000000000046}")
public interface _Component extends Com4jObject {
// Methods:
/**
*
* Getter method for the COM property "Application"
*
* @return Returns a value of type net.rgielen.com4j.office2010.vba.Application
*/
@DISPID(1) //= 0x1. The runtime will prefer the VTID if present
@VTID(7)
net.rgielen.com4j.office2010.vba.Application application();
/**
*
* Getter method for the COM property "Parent"
*
* @return Returns a value of type net.rgielen.com4j.office2010.vba._Components
*/
@DISPID(2) //= 0x2. The runtime will prefer the VTID if present
@VTID(8)
net.rgielen.com4j.office2010.vba._Components parent();
/**
*
* Getter method for the COM property "IsDirty"
*
* @return Returns a value of type boolean
*/
@DISPID(10) //= 0xa. The runtime will prefer the VTID if present
@VTID(9)
boolean isDirty();
/**
*
* Setter method for the COM property "IsDirty"
*
* @param lpfReturn Mandatory boolean parameter.
*/
@DISPID(10) //= 0xa. The runtime will prefer the VTID if present
@VTID(10)
void isDirty(
boolean lpfReturn);
/**
*
* Getter method for the COM property "Name"
*
* @return Returns a value of type java.lang.String
*/
@DISPID(48) //= 0x30. The runtime will prefer the VTID if present
@VTID(11)
java.lang.String name();
/**
*
* Setter method for the COM property "Name"
*
* @param pbstrReturn Mandatory java.lang.String parameter.
*/
@DISPID(48) //= 0x30. The runtime will prefer the VTID if present
@VTID(12)
void name(
java.lang.String pbstrReturn);
// Properties:
}