net.rgielen.com4j.office2010.excel.ISortField Maven / Gradle / Ivy
package net.rgielen.com4j.office2010.excel ;
import com4j.*;
@IID("{000244A9-0001-0000-C000-000000000046}")
public interface ISortField 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 "SortOn"
*
* @return Returns a value of type net.rgielen.com4j.office2010.excel.XlSortOn
*/
@VTID(10)
net.rgielen.com4j.office2010.excel.XlSortOn sortOn();
/**
*
* Setter method for the COM property "SortOn"
*
* @param rhs Mandatory net.rgielen.com4j.office2010.excel.XlSortOn parameter.
*/
@VTID(11)
void sortOn(
net.rgielen.com4j.office2010.excel.XlSortOn rhs);
/**
*
* Getter method for the COM property "SortOnValue"
*
* @return Returns a value of type com4j.Com4jObject
*/
@VTID(12)
@ReturnValue(type=NativeType.Dispatch)
com4j.Com4jObject sortOnValue();
/**
*
* Getter method for the COM property "Key"
*
* @return Returns a value of type net.rgielen.com4j.office2010.excel.Range
*/
@VTID(13)
net.rgielen.com4j.office2010.excel.Range key();
/**
*
* Getter method for the COM property "Order"
*
* @return Returns a value of type net.rgielen.com4j.office2010.excel.XlSortOrder
*/
@VTID(14)
net.rgielen.com4j.office2010.excel.XlSortOrder order();
/**
*
* Setter method for the COM property "Order"
*
* @param rhs Mandatory net.rgielen.com4j.office2010.excel.XlSortOrder parameter.
*/
@VTID(15)
void order(
net.rgielen.com4j.office2010.excel.XlSortOrder rhs);
/**
*
* Getter method for the COM property "CustomOrder"
*
* @return Returns a value of type java.lang.Object
*/
@VTID(16)
@ReturnValue(type=NativeType.VARIANT)
java.lang.Object customOrder();
/**
*
* Setter method for the COM property "CustomOrder"
*
* @param rhs Mandatory java.lang.Object parameter.
*/
@VTID(17)
void customOrder(
@MarshalAs(NativeType.VARIANT) java.lang.Object rhs);
/**
*
* Getter method for the COM property "DataOption"
*
* @return Returns a value of type net.rgielen.com4j.office2010.excel.XlSortDataOption
*/
@VTID(18)
net.rgielen.com4j.office2010.excel.XlSortDataOption dataOption();
/**
*
* Setter method for the COM property "DataOption"
*
* @param rhs Mandatory net.rgielen.com4j.office2010.excel.XlSortDataOption parameter.
*/
@VTID(19)
void dataOption(
net.rgielen.com4j.office2010.excel.XlSortDataOption rhs);
/**
*
* Getter method for the COM property "Priority"
*
* @return Returns a value of type int
*/
@VTID(20)
int priority();
/**
*
* Setter method for the COM property "Priority"
*
* @param rhs Mandatory int parameter.
*/
@VTID(21)
void priority(
int rhs);
/**
*/
@VTID(22)
void delete();
/**
* @param key Mandatory net.rgielen.com4j.office2010.excel.Range parameter.
*/
@VTID(23)
void modifyKey(
net.rgielen.com4j.office2010.excel.Range key);
/**
* @param icon Mandatory net.rgielen.com4j.office2010.excel.Icon parameter.
*/
@VTID(24)
void setIcon(
net.rgielen.com4j.office2010.excel.Icon icon);
// Properties:
}