net.rgielen.com4j.office2010.vba.Property Maven / Gradle / Ivy
The newest version!
package net.rgielen.com4j.office2010.vba ;
import com4j.*;
@IID("{0002E18C-0000-0000-C000-000000000046}")
public interface Property extends Com4jObject {
// Methods:
/**
*
* Getter method for the COM property "Value"
*
* @return Returns a value of type java.lang.Object
*/
@DISPID(0) //= 0x0. The runtime will prefer the VTID if present
@VTID(7)
@DefaultMethod
@ReturnValue(type=NativeType.VARIANT)
java.lang.Object value();
/**
*
* Setter method for the COM property "Value"
*
* @param lppvReturn Mandatory java.lang.Object parameter.
*/
@DISPID(0) //= 0x0. The runtime will prefer the VTID if present
@VTID(8)
@DefaultMethod
void value(
@MarshalAs(NativeType.VARIANT) java.lang.Object lppvReturn);
/**
*
* Getter method for the COM property "IndexedValue"
*
* @param index1 Mandatory java.lang.Object parameter.
* @param index2 Optional parameter. Default value is com4j.Variant.getMissing()
* @param index3 Optional parameter. Default value is com4j.Variant.getMissing()
* @param index4 Optional parameter. Default value is com4j.Variant.getMissing()
* @return Returns a value of type java.lang.Object
*/
@DISPID(3) //= 0x3. The runtime will prefer the VTID if present
@VTID(9)
@ReturnValue(type=NativeType.VARIANT)
java.lang.Object indexedValue(
@MarshalAs(NativeType.VARIANT) java.lang.Object index1,
@Optional @MarshalAs(NativeType.VARIANT) java.lang.Object index2,
@Optional @MarshalAs(NativeType.VARIANT) java.lang.Object index3,
@Optional @MarshalAs(NativeType.VARIANT) java.lang.Object index4);
/**
*
* Setter method for the COM property "IndexedValue"
*
* @param index1 Mandatory java.lang.Object parameter.
* @param index2 Optional parameter. Default value is com4j.Variant.getMissing()
* @param index3 Optional parameter. Default value is com4j.Variant.getMissing()
* @param index4 Optional parameter. Default value is com4j.Variant.getMissing()
* @param lppvReturn Mandatory java.lang.Object parameter.
*/
@DISPID(3) //= 0x3. The runtime will prefer the VTID if present
@VTID(10)
void indexedValue(
@MarshalAs(NativeType.VARIANT) java.lang.Object index1,
@Optional @MarshalAs(NativeType.VARIANT) java.lang.Object index2,
@Optional @MarshalAs(NativeType.VARIANT) java.lang.Object index3,
@Optional @MarshalAs(NativeType.VARIANT) java.lang.Object index4,
@MarshalAs(NativeType.VARIANT) java.lang.Object lppvReturn);
/**
*
* Getter method for the COM property "NumIndices"
*
* @return Returns a value of type short
*/
@DISPID(4) //= 0x4. The runtime will prefer the VTID if present
@VTID(11)
short numIndices();
/**
*
* 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(12)
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._Properties
*/
@DISPID(2) //= 0x2. The runtime will prefer the VTID if present
@VTID(13)
net.rgielen.com4j.office2010.vba._Properties parent();
/**
*
* Getter method for the COM property "Name"
*
* @return Returns a value of type java.lang.String
*/
@DISPID(40) //= 0x28. The runtime will prefer the VTID if present
@VTID(14)
java.lang.String name();
/**
*
* Getter method for the COM property "VBE"
*
* @return Returns a value of type net.rgielen.com4j.office2010.vba.VBE
*/
@DISPID(41) //= 0x29. The runtime will prefer the VTID if present
@VTID(15)
net.rgielen.com4j.office2010.vba.VBE vbe();
/**
*
* Getter method for the COM property "Collection"
*
* @return Returns a value of type net.rgielen.com4j.office2010.vba._Properties
*/
@DISPID(42) //= 0x2a. The runtime will prefer the VTID if present
@VTID(16)
net.rgielen.com4j.office2010.vba._Properties collection();
/**
*
* Getter method for the COM property "Object"
*
* @return Returns a value of type com4j.Com4jObject
*/
@DISPID(45) //= 0x2d. The runtime will prefer the VTID if present
@VTID(17)
com4j.Com4jObject object();
/**
*
* Setter method for the COM property "Object"
*
* @param lppunk Mandatory com4j.Com4jObject parameter.
*/
@DISPID(45) //= 0x2d. The runtime will prefer the VTID if present
@VTID(18)
void object(
com4j.Com4jObject lppunk);
// Properties:
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy