
net.rgielen.com4j.office2010.word.BuildingBlock Maven / Gradle / Ivy
package net.rgielen.com4j.office2010.word ;
import com4j.*;
@IID("{BFD3FC23-F763-4FF8-826E-1AFBF598A4E7}")
public interface BuildingBlock extends Com4jObject {
// Methods:
/**
*
* Getter method for the COM property "Application"
*
* @return Returns a value of type net.rgielen.com4j.office2010.word._Application
*/
@DISPID(1000) //= 0x3e8. The runtime will prefer the VTID if present
@VTID(7)
net.rgielen.com4j.office2010.word._Application application();
/**
*
* Getter method for the COM property "Creator"
*
* @return Returns a value of type int
*/
@DISPID(1001) //= 0x3e9. The runtime will prefer the VTID if present
@VTID(8)
int creator();
/**
*
* Getter method for the COM property "Parent"
*
* @return Returns a value of type com4j.Com4jObject
*/
@DISPID(1002) //= 0x3ea. The runtime will prefer the VTID if present
@VTID(9)
@ReturnValue(type=NativeType.Dispatch)
com4j.Com4jObject parent();
/**
*
* Getter method for the COM property "Index"
*
* @return Returns a value of type int
*/
@DISPID(1) //= 0x1. The runtime will prefer the VTID if present
@VTID(10)
int index();
/**
*
* Getter method for the COM property "Name"
*
* @return Returns a value of type java.lang.String
*/
@DISPID(2) //= 0x2. The runtime will prefer the VTID if present
@VTID(11)
java.lang.String name();
/**
*
* Setter method for the COM property "Name"
*
* @param prop Mandatory java.lang.String parameter.
*/
@DISPID(2) //= 0x2. The runtime will prefer the VTID if present
@VTID(12)
void name(
java.lang.String prop);
/**
*
* Getter method for the COM property "Type"
*
* @return Returns a value of type net.rgielen.com4j.office2010.word.BuildingBlockType
*/
@DISPID(3) //= 0x3. The runtime will prefer the VTID if present
@VTID(13)
net.rgielen.com4j.office2010.word.BuildingBlockType type();
/**
*
* Getter method for the COM property "Description"
*
* @return Returns a value of type java.lang.String
*/
@DISPID(4) //= 0x4. The runtime will prefer the VTID if present
@VTID(14)
java.lang.String description();
/**
*
* Setter method for the COM property "Description"
*
* @param prop Mandatory java.lang.String parameter.
*/
@DISPID(4) //= 0x4. The runtime will prefer the VTID if present
@VTID(15)
void description(
java.lang.String prop);
/**
*
* Getter method for the COM property "ID"
*
* @return Returns a value of type java.lang.String
*/
@DISPID(5) //= 0x5. The runtime will prefer the VTID if present
@VTID(16)
java.lang.String id();
/**
*
* Getter method for the COM property "Category"
*
* @return Returns a value of type net.rgielen.com4j.office2010.word.Category
*/
@DISPID(6) //= 0x6. The runtime will prefer the VTID if present
@VTID(17)
net.rgielen.com4j.office2010.word.Category category();
/**
*
* Getter method for the COM property "Value"
*
* @return Returns a value of type java.lang.String
*/
@DISPID(0) //= 0x0. The runtime will prefer the VTID if present
@VTID(18)
@DefaultMethod
java.lang.String value();
/**
*
* Setter method for the COM property "Value"
*
* @param prop Mandatory java.lang.String parameter.
*/
@DISPID(0) //= 0x0. The runtime will prefer the VTID if present
@VTID(19)
@DefaultMethod
void value(
java.lang.String prop);
/**
*
* Getter method for the COM property "InsertOptions"
*
* @return Returns a value of type int
*/
@DISPID(7) //= 0x7. The runtime will prefer the VTID if present
@VTID(20)
int insertOptions();
/**
*
* Setter method for the COM property "InsertOptions"
*
* @param prop Mandatory int parameter.
*/
@DISPID(7) //= 0x7. The runtime will prefer the VTID if present
@VTID(21)
void insertOptions(
int prop);
/**
*/
@DISPID(101) //= 0x65. The runtime will prefer the VTID if present
@VTID(22)
void delete();
/**
* @param where Mandatory net.rgielen.com4j.office2010.word.Range parameter.
* @param richText Optional parameter. Default value is com4j.Variant.getMissing()
* @return Returns a value of type net.rgielen.com4j.office2010.word.Range
*/
@DISPID(102) //= 0x66. The runtime will prefer the VTID if present
@VTID(23)
net.rgielen.com4j.office2010.word.Range insert(
net.rgielen.com4j.office2010.word.Range where,
@Optional java.lang.Object richText);
// Properties:
}