net.rgielen.com4j.office2010.excel.ITrendlines Maven / Gradle / Ivy
The newest version!
package net.rgielen.com4j.office2010.excel ;
import com4j.*;
@IID("{000208BD-0001-0000-C000-000000000046}")
public interface ITrendlines 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();
/**
* @param type Optional parameter. Default value is -4132
* @param order Optional parameter. Default value is com4j.Variant.getMissing()
* @param period Optional parameter. Default value is com4j.Variant.getMissing()
* @param forward Optional parameter. Default value is com4j.Variant.getMissing()
* @param backward Optional parameter. Default value is com4j.Variant.getMissing()
* @param intercept Optional parameter. Default value is com4j.Variant.getMissing()
* @param displayEquation Optional parameter. Default value is com4j.Variant.getMissing()
* @param displayRSquared Optional parameter. Default value is com4j.Variant.getMissing()
* @param name Optional parameter. Default value is com4j.Variant.getMissing()
* @return Returns a value of type net.rgielen.com4j.office2010.excel.Trendline
*/
@VTID(10)
net.rgielen.com4j.office2010.excel.Trendline add(
@Optional @DefaultValue("-4132") net.rgielen.com4j.office2010.excel.XlTrendlineType type,
@Optional @MarshalAs(NativeType.VARIANT) java.lang.Object order,
@Optional @MarshalAs(NativeType.VARIANT) java.lang.Object period,
@Optional @MarshalAs(NativeType.VARIANT) java.lang.Object forward,
@Optional @MarshalAs(NativeType.VARIANT) java.lang.Object backward,
@Optional @MarshalAs(NativeType.VARIANT) java.lang.Object intercept,
@Optional @MarshalAs(NativeType.VARIANT) java.lang.Object displayEquation,
@Optional @MarshalAs(NativeType.VARIANT) java.lang.Object displayRSquared,
@Optional @MarshalAs(NativeType.VARIANT) java.lang.Object name);
/**
*
* Getter method for the COM property "Count"
*
* @return Returns a value of type int
*/
@VTID(11)
int count();
/**
* @param index Optional parameter. Default value is com4j.Variant.getMissing()
* @return Returns a value of type net.rgielen.com4j.office2010.excel.Trendline
*/
@VTID(12)
net.rgielen.com4j.office2010.excel.Trendline item(
@Optional @MarshalAs(NativeType.VARIANT) java.lang.Object index);
/**
*/
@VTID(13)
java.util.Iterator iterator();
/**
* @param index Optional parameter. Default value is com4j.Variant.getMissing()
* @return Returns a value of type net.rgielen.com4j.office2010.excel.Trendline
*/
@VTID(14)
@DefaultMethod
net.rgielen.com4j.office2010.excel.Trendline _Default(
@Optional @MarshalAs(NativeType.VARIANT) java.lang.Object index);
// Properties:
}