net.rgielen.com4j.office2010.excel.IPivotFormula Maven / Gradle / Ivy
package net.rgielen.com4j.office2010.excel ;
import com4j.*;
@IID("{0002441E-0001-0000-C000-000000000046}")
public interface IPivotFormula extends Com4jObject {
// 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();
/**
*/
@VTID(10)
void delete();
/**
*
* Getter method for the COM property "_Default"
*
* @return Returns a value of type java.lang.String
*/
@VTID(11)
@DefaultMethod
java.lang.String _Default();
/**
*
* Setter method for the COM property "_Default"
*
* @param rhs Mandatory java.lang.String parameter.
*/
@VTID(12)
@DefaultMethod
void _Default(
java.lang.String rhs);
/**
*
* Getter method for the COM property "Formula"
*
* @return Returns a value of type java.lang.String
*/
@VTID(13)
java.lang.String formula();
/**
*
* Setter method for the COM property "Formula"
*
* @param rhs Mandatory java.lang.String parameter.
*/
@VTID(14)
void formula(
java.lang.String rhs);
/**
*
* Getter method for the COM property "Value"
*
* @return Returns a value of type java.lang.String
*/
@VTID(15)
java.lang.String value();
/**
*
* Setter method for the COM property "Value"
*
* @param rhs Mandatory java.lang.String parameter.
*/
@VTID(16)
void value(
java.lang.String rhs);
/**
*
* Getter method for the COM property "Index"
*
* @return Returns a value of type int
*/
@VTID(17)
int index();
/**
*
* Setter method for the COM property "Index"
*
* @param rhs Mandatory int parameter.
*/
@VTID(18)
void index(
int rhs);
/**
*
* Getter method for the COM property "StandardFormula"
*
* @return Returns a value of type java.lang.String
*/
@VTID(19)
java.lang.String standardFormula();
/**
*
* Setter method for the COM property "StandardFormula"
*
* @param rhs Mandatory java.lang.String parameter.
*/
@VTID(20)
void standardFormula(
java.lang.String rhs);
// Properties:
}