net.rgielen.com4j.office2010.excel.CustomProperty Maven / Gradle / Ivy
The newest version!
package net.rgielen.com4j.office2010.excel ;
import com4j.*;
@IID("{00020400-0000-0000-C000-000000000046}")
public interface CustomProperty 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 "Name"
*
*/
@DISPID(110)
@PropGet
java.lang.String name();
/**
*
* Setter method for the COM property "Name"
*
* @param rhs Mandatory java.lang.String parameter.
*/
@DISPID(110)
@PropPut
void name(
java.lang.String rhs);
/**
*
* Getter method for the COM property "Value"
*
*/
@DISPID(6)
@PropGet
java.lang.Object value();
/**
*
* Setter method for the COM property "Value"
*
* @param rhs Mandatory java.lang.Object parameter.
*/
@DISPID(6)
@PropPut
void value(
java.lang.Object rhs);
/**
*
* Getter method for the COM property "_Default"
*
*/
@DISPID(0)
@PropGet
@DefaultMethod
java.lang.Object _Default();
/**
*/
@DISPID(117)
void delete();
// Properties:
}