net.rgielen.com4j.office2010.excel.IPublishObjects Maven / Gradle / Ivy
The newest version!
package net.rgielen.com4j.office2010.excel ;
import com4j.*;
@IID("{00024443-0001-0000-C000-000000000046}")
public interface IPublishObjects 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 sourceType Mandatory net.rgielen.com4j.office2010.excel.XlSourceType parameter.
* @param filename Mandatory java.lang.String parameter.
* @param sheet Optional parameter. Default value is com4j.Variant.getMissing()
* @param source Optional parameter. Default value is com4j.Variant.getMissing()
* @param htmlType Optional parameter. Default value is com4j.Variant.getMissing()
* @param divID Optional parameter. Default value is com4j.Variant.getMissing()
* @param title Optional parameter. Default value is com4j.Variant.getMissing()
* @return Returns a value of type net.rgielen.com4j.office2010.excel.PublishObject
*/
@VTID(10)
net.rgielen.com4j.office2010.excel.PublishObject add(
net.rgielen.com4j.office2010.excel.XlSourceType sourceType,
java.lang.String filename,
@Optional @MarshalAs(NativeType.VARIANT) java.lang.Object sheet,
@Optional @MarshalAs(NativeType.VARIANT) java.lang.Object source,
@Optional @MarshalAs(NativeType.VARIANT) java.lang.Object htmlType,
@Optional @MarshalAs(NativeType.VARIANT) java.lang.Object divID,
@Optional @MarshalAs(NativeType.VARIANT) java.lang.Object title);
/**
*
* Getter method for the COM property "Count"
*
* @return Returns a value of type int
*/
@VTID(11)
int count();
/**
*
* 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.PublishObject
*/
@VTID(12)
net.rgielen.com4j.office2010.excel.PublishObject item(
@MarshalAs(NativeType.VARIANT) java.lang.Object index);
/**
*
* 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.PublishObject
*/
@VTID(13)
@DefaultMethod
net.rgielen.com4j.office2010.excel.PublishObject _Default(
@MarshalAs(NativeType.VARIANT) java.lang.Object index);
/**
*
* Getter method for the COM property "_NewEnum"
*
*/
@VTID(14)
java.util.Iterator iterator();
/**
*/
@VTID(15)
void delete();
/**
*/
@VTID(16)
void publish();
// Properties:
}