net.rgielen.com4j.office2010.excel.IPhonetics Maven / Gradle / Ivy
package net.rgielen.com4j.office2010.excel ;
import com4j.*;
@IID("{00024447-0001-0000-C000-000000000046}")
public interface IPhonetics extends Com4jObject,Iterable {
// Methods:
/**
*
* Getter method for the COM property "Application"
*
* @return Returns a value of type net.rgielen.com4j.office2010.excel._Application
*/
@VTID(7)
net.rgielen.com4j.office2010.excel._Application application();
/**
*
* Getter method for the COM property "Creator"
*
* @return Returns a value of type net.rgielen.com4j.office2010.excel.XlCreator
*/
@VTID(8)
net.rgielen.com4j.office2010.excel.XlCreator creator();
/**
*
* Getter method for the COM property "Parent"
*
* @return Returns a value of type com4j.Com4jObject
*/
@VTID(9)
@ReturnValue(type=NativeType.Dispatch)
com4j.Com4jObject parent();
/**
*
* Getter method for the COM property "Count"
*
* @return Returns a value of type int
*/
@VTID(10)
int count();
/**
*
* Getter method for the COM property "Start"
*
* @return Returns a value of type int
*/
@VTID(11)
int start();
/**
*
* Getter method for the COM property "Length"
*
* @return Returns a value of type int
*/
@VTID(12)
int length();
/**
*
* Getter method for the COM property "Visible"
*
* @return Returns a value of type boolean
*/
@VTID(13)
boolean visible();
/**
*
* Setter method for the COM property "Visible"
*
* @param rhs Mandatory boolean parameter.
*/
@VTID(14)
void visible(
boolean rhs);
/**
*
* Getter method for the COM property "CharacterType"
*
* @return Returns a value of type int
*/
@VTID(15)
int characterType();
/**
*
* Setter method for the COM property "CharacterType"
*
* @param rhs Mandatory int parameter.
*/
@VTID(16)
void characterType(
int rhs);
/**
*
* Getter method for the COM property "Alignment"
*
* @return Returns a value of type int
*/
@VTID(17)
int alignment();
/**
*
* Setter method for the COM property "Alignment"
*
* @param rhs Mandatory int parameter.
*/
@VTID(18)
void alignment(
int rhs);
/**
*
* Getter method for the COM property "Font"
*
* @return Returns a value of type net.rgielen.com4j.office2010.excel.Font
*/
@VTID(19)
net.rgielen.com4j.office2010.excel.Font font();
/**
*
* Getter method for the COM property "Item"
*
* @param index Mandatory int parameter.
* @return Returns a value of type com4j.Com4jObject
*/
@VTID(20)
@ReturnValue(type=NativeType.Dispatch)
com4j.Com4jObject item(
int index);
/**
*/
@VTID(21)
void delete();
/**
* @param start Mandatory int parameter.
* @param length Mandatory int parameter.
* @param text Mandatory java.lang.String parameter.
*/
@VTID(22)
void add(
int start,
int length,
java.lang.String text);
/**
*
* Getter method for the COM property "Text"
*
* @return Returns a value of type java.lang.String
*/
@VTID(23)
java.lang.String text();
/**
*
* Setter method for the COM property "Text"
*
* @param rhs Mandatory java.lang.String parameter.
*/
@VTID(24)
void text(
java.lang.String rhs);
/**
*
* Getter method for the COM property "_Default"
*
* @param index Mandatory int parameter.
* @return Returns a value of type com4j.Com4jObject
*/
@VTID(25)
@DefaultMethod
@ReturnValue(type=NativeType.Dispatch)
com4j.Com4jObject _Default(
int index);
/**
*
* Getter method for the COM property "_NewEnum"
*
*/
@VTID(26)
java.util.Iterator iterator();
// Properties:
}