net.rgielen.com4j.office2010.excel.Validation Maven / Gradle / Ivy
package net.rgielen.com4j.office2010.excel ;
import com4j.*;
@IID("{00020400-0000-0000-C000-000000000046}")
public interface Validation 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();
/**
* @param type Mandatory net.rgielen.com4j.office2010.excel.XlDVType parameter.
* @param alertStyle Optional parameter. Default value is com4j.Variant.getMissing()
* @param operator Optional parameter. Default value is com4j.Variant.getMissing()
* @param formula1 Optional parameter. Default value is com4j.Variant.getMissing()
* @param formula2 Optional parameter. Default value is com4j.Variant.getMissing()
*/
@DISPID(181)
void add(
net.rgielen.com4j.office2010.excel.XlDVType type,
@Optional java.lang.Object alertStyle,
@Optional java.lang.Object operator,
@Optional java.lang.Object formula1,
@Optional java.lang.Object formula2);
/**
*
* Getter method for the COM property "AlertStyle"
*
*/
@DISPID(1605)
@PropGet
int alertStyle();
/**
*
* Getter method for the COM property "IgnoreBlank"
*
*/
@DISPID(1606)
@PropGet
boolean ignoreBlank();
/**
*
* Setter method for the COM property "IgnoreBlank"
*
* @param rhs Mandatory boolean parameter.
*/
@DISPID(1606)
@PropPut
void ignoreBlank(
boolean rhs);
/**
*
* Getter method for the COM property "IMEMode"
*
*/
@DISPID(1607)
@PropGet
int imeMode();
/**
*
* Setter method for the COM property "IMEMode"
*
* @param rhs Mandatory int parameter.
*/
@DISPID(1607)
@PropPut
void imeMode(
int rhs);
/**
*
* Getter method for the COM property "InCellDropdown"
*
*/
@DISPID(1608)
@PropGet
boolean inCellDropdown();
/**
*
* Setter method for the COM property "InCellDropdown"
*
* @param rhs Mandatory boolean parameter.
*/
@DISPID(1608)
@PropPut
void inCellDropdown(
boolean rhs);
/**
*/
@DISPID(117)
void delete();
/**
*
* Getter method for the COM property "ErrorMessage"
*
*/
@DISPID(1609)
@PropGet
java.lang.String errorMessage();
/**
*
* Setter method for the COM property "ErrorMessage"
*
* @param rhs Mandatory java.lang.String parameter.
*/
@DISPID(1609)
@PropPut
void errorMessage(
java.lang.String rhs);
/**
*
* Getter method for the COM property "ErrorTitle"
*
*/
@DISPID(1610)
@PropGet
java.lang.String errorTitle();
/**
*
* Setter method for the COM property "ErrorTitle"
*
* @param rhs Mandatory java.lang.String parameter.
*/
@DISPID(1610)
@PropPut
void errorTitle(
java.lang.String rhs);
/**
*
* Getter method for the COM property "InputMessage"
*
*/
@DISPID(1611)
@PropGet
java.lang.String inputMessage();
/**
*
* Setter method for the COM property "InputMessage"
*
* @param rhs Mandatory java.lang.String parameter.
*/
@DISPID(1611)
@PropPut
void inputMessage(
java.lang.String rhs);
/**
*
* Getter method for the COM property "InputTitle"
*
*/
@DISPID(1612)
@PropGet
java.lang.String inputTitle();
/**
*
* Setter method for the COM property "InputTitle"
*
* @param rhs Mandatory java.lang.String parameter.
*/
@DISPID(1612)
@PropPut
void inputTitle(
java.lang.String rhs);
/**
*
* Getter method for the COM property "Formula1"
*
*/
@DISPID(1579)
@PropGet
java.lang.String formula1();
/**
*
* Getter method for the COM property "Formula2"
*
*/
@DISPID(1580)
@PropGet
java.lang.String formula2();
/**
* @param type Optional parameter. Default value is com4j.Variant.getMissing()
* @param alertStyle Optional parameter. Default value is com4j.Variant.getMissing()
* @param operator Optional parameter. Default value is com4j.Variant.getMissing()
* @param formula1 Optional parameter. Default value is com4j.Variant.getMissing()
* @param formula2 Optional parameter. Default value is com4j.Variant.getMissing()
*/
@DISPID(1581)
void modify(
@Optional java.lang.Object type,
@Optional java.lang.Object alertStyle,
@Optional java.lang.Object operator,
@Optional java.lang.Object formula1,
@Optional java.lang.Object formula2);
/**
*
* Getter method for the COM property "Operator"
*
*/
@DISPID(797)
@PropGet
int operator();
/**
*
* Getter method for the COM property "ShowError"
*
*/
@DISPID(1613)
@PropGet
boolean showError();
/**
*
* Setter method for the COM property "ShowError"
*
* @param rhs Mandatory boolean parameter.
*/
@DISPID(1613)
@PropPut
void showError(
boolean rhs);
/**
*
* Getter method for the COM property "ShowInput"
*
*/
@DISPID(1614)
@PropGet
boolean showInput();
/**
*
* Setter method for the COM property "ShowInput"
*
* @param rhs Mandatory boolean parameter.
*/
@DISPID(1614)
@PropPut
void showInput(
boolean rhs);
/**
*
* Getter method for the COM property "Type"
*
*/
@DISPID(108)
@PropGet
int type();
/**
*
* Getter method for the COM property "Value"
*
*/
@DISPID(6)
@PropGet
boolean value();
// Properties:
}