net.rgielen.com4j.office2010.excel.SortField Maven / Gradle / Ivy
package net.rgielen.com4j.office2010.excel ;
import com4j.*;
@IID("{00020400-0000-0000-C000-000000000046}")
public interface SortField extends Com4jObject {
// Methods:
/**
*
* Getter method for the COM property "Application"
*
*/
@DISPID(148)
@PropGet
net.rgielen.com4j.office2010.excel._Application application();
/**
*
* Getter method for the COM property "Creator"
*
*/
@DISPID(149)
@PropGet
net.rgielen.com4j.office2010.excel.XlCreator creator();
/**
*
* Getter method for the COM property "Parent"
*
*/
@DISPID(150)
@PropGet
com4j.Com4jObject parent();
/**
*
* Getter method for the COM property "SortOn"
*
*/
@DISPID(2741)
@PropGet
net.rgielen.com4j.office2010.excel.XlSortOn sortOn();
/**
*
* Setter method for the COM property "SortOn"
*
* @param rhs Mandatory net.rgielen.com4j.office2010.excel.XlSortOn parameter.
*/
@DISPID(2741)
@PropPut
void sortOn(
net.rgielen.com4j.office2010.excel.XlSortOn rhs);
/**
*
* Getter method for the COM property "SortOnValue"
*
*/
@DISPID(2742)
@PropGet
com4j.Com4jObject sortOnValue();
/**
*
* Getter method for the COM property "Key"
*
*/
@DISPID(155)
@PropGet
net.rgielen.com4j.office2010.excel.Range key();
/**
*
* Getter method for the COM property "Order"
*
*/
@DISPID(192)
@PropGet
net.rgielen.com4j.office2010.excel.XlSortOrder order();
/**
*
* Setter method for the COM property "Order"
*
* @param rhs Mandatory net.rgielen.com4j.office2010.excel.XlSortOrder parameter.
*/
@DISPID(192)
@PropPut
void order(
net.rgielen.com4j.office2010.excel.XlSortOrder rhs);
/**
*
* Getter method for the COM property "CustomOrder"
*
*/
@DISPID(2743)
@PropGet
java.lang.Object customOrder();
/**
*
* Setter method for the COM property "CustomOrder"
*
* @param rhs Mandatory java.lang.Object parameter.
*/
@DISPID(2743)
@PropPut
void customOrder(
java.lang.Object rhs);
/**
*
* Getter method for the COM property "DataOption"
*
*/
@DISPID(2744)
@PropGet
net.rgielen.com4j.office2010.excel.XlSortDataOption dataOption();
/**
*
* Setter method for the COM property "DataOption"
*
* @param rhs Mandatory net.rgielen.com4j.office2010.excel.XlSortDataOption parameter.
*/
@DISPID(2744)
@PropPut
void dataOption(
net.rgielen.com4j.office2010.excel.XlSortDataOption rhs);
/**
*
* Getter method for the COM property "Priority"
*
*/
@DISPID(985)
@PropGet
int priority();
/**
*
* Setter method for the COM property "Priority"
*
* @param rhs Mandatory int parameter.
*/
@DISPID(985)
@PropPut
void priority(
int rhs);
/**
*/
@DISPID(117)
void delete();
/**
* @param key Mandatory net.rgielen.com4j.office2010.excel.Range parameter.
*/
@DISPID(2745)
void modifyKey(
net.rgielen.com4j.office2010.excel.Range key);
/**
* @param icon Mandatory net.rgielen.com4j.office2010.excel.Icon parameter.
*/
@DISPID(2746)
void setIcon(
net.rgielen.com4j.office2010.excel.Icon icon);
// Properties:
}