net.rgielen.com4j.office2010.excel.IOutline Maven / Gradle / Ivy
The newest version!
package net.rgielen.com4j.office2010.excel ;
import com4j.*;
@IID("{000208AB-0001-0000-C000-000000000046}")
public interface IOutline 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();
/**
*
* Getter method for the COM property "AutomaticStyles"
*
* @return Returns a value of type boolean
*/
@VTID(10)
boolean automaticStyles();
/**
*
* Setter method for the COM property "AutomaticStyles"
*
* @param rhs Mandatory boolean parameter.
*/
@VTID(11)
void automaticStyles(
boolean rhs);
/**
* @param rowLevels Optional parameter. Default value is com4j.Variant.getMissing()
* @param columnLevels Optional parameter. Default value is com4j.Variant.getMissing()
* @return Returns a value of type java.lang.Object
*/
@VTID(12)
@ReturnValue(type=NativeType.VARIANT)
java.lang.Object showLevels(
@Optional @MarshalAs(NativeType.VARIANT) java.lang.Object rowLevels,
@Optional @MarshalAs(NativeType.VARIANT) java.lang.Object columnLevels);
/**
*
* Getter method for the COM property "SummaryColumn"
*
* @return Returns a value of type net.rgielen.com4j.office2010.excel.XlSummaryColumn
*/
@VTID(13)
net.rgielen.com4j.office2010.excel.XlSummaryColumn summaryColumn();
/**
*
* Setter method for the COM property "SummaryColumn"
*
* @param rhs Mandatory net.rgielen.com4j.office2010.excel.XlSummaryColumn parameter.
*/
@VTID(14)
void summaryColumn(
net.rgielen.com4j.office2010.excel.XlSummaryColumn rhs);
/**
*
* Getter method for the COM property "SummaryRow"
*
* @return Returns a value of type net.rgielen.com4j.office2010.excel.XlSummaryRow
*/
@VTID(15)
net.rgielen.com4j.office2010.excel.XlSummaryRow summaryRow();
/**
*
* Setter method for the COM property "SummaryRow"
*
* @param rhs Mandatory net.rgielen.com4j.office2010.excel.XlSummaryRow parameter.
*/
@VTID(16)
void summaryRow(
net.rgielen.com4j.office2010.excel.XlSummaryRow rhs);
// Properties:
}