net.rgielen.com4j.office2010.excel.ISortFields Maven / Gradle / Ivy
The newest version!
package net.rgielen.com4j.office2010.excel ;
import com4j.*;
@IID("{000244AA-0001-0000-C000-000000000046}")
public interface ISortFields 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 key Mandatory net.rgielen.com4j.office2010.excel.Range parameter.
* @param sortOn Optional parameter. Default value is com4j.Variant.getMissing()
* @param order Optional parameter. Default value is com4j.Variant.getMissing()
* @param customOrder Optional parameter. Default value is com4j.Variant.getMissing()
* @param dataOption Optional parameter. Default value is com4j.Variant.getMissing()
* @return Returns a value of type net.rgielen.com4j.office2010.excel.SortField
*/
@VTID(10)
net.rgielen.com4j.office2010.excel.SortField add(
net.rgielen.com4j.office2010.excel.Range key,
@Optional @MarshalAs(NativeType.VARIANT) java.lang.Object sortOn,
@Optional @MarshalAs(NativeType.VARIANT) java.lang.Object order,
@Optional @MarshalAs(NativeType.VARIANT) java.lang.Object customOrder,
@Optional @MarshalAs(NativeType.VARIANT) java.lang.Object dataOption);
/**
*
* Getter method for the COM property "Item"
*
* @param index Mandatory java.lang.Object parameter.
* @return Returns a value of type net.rgielen.com4j.office2010.excel.SortField
*/
@VTID(11)
net.rgielen.com4j.office2010.excel.SortField item(
@MarshalAs(NativeType.VARIANT) java.lang.Object index);
/**
*
* Getter method for the COM property "Count"
*
* @return Returns a value of type int
*/
@VTID(12)
int count();
/**
*/
@VTID(13)
void clear();
/**
*
* Getter method for the COM property "_Default"
*
* @param index Mandatory java.lang.Object parameter.
* @return Returns a value of type net.rgielen.com4j.office2010.excel.SortField
*/
@VTID(14)
@DefaultMethod
net.rgielen.com4j.office2010.excel.SortField _Default(
@MarshalAs(NativeType.VARIANT) java.lang.Object index);
/**
*
* Getter method for the COM property "_NewEnum"
*
*/
@VTID(15)
java.util.Iterator iterator();
// Properties:
}