net.rgielen.com4j.office2010.excel.IComment Maven / Gradle / Ivy
The newest version!
package net.rgielen.com4j.office2010.excel ;
import com4j.*;
@IID("{00024427-0001-0000-C000-000000000046}")
public interface IComment 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 "Author"
*
* @return Returns a value of type java.lang.String
*/
@VTID(10)
java.lang.String author();
/**
*
* Getter method for the COM property "Shape"
*
* @return Returns a value of type net.rgielen.com4j.office2010.excel.Shape
*/
@VTID(11)
net.rgielen.com4j.office2010.excel.Shape shape();
/**
*
* Getter method for the COM property "Visible"
*
* @return Returns a value of type boolean
*/
@VTID(12)
boolean visible();
/**
*
* Setter method for the COM property "Visible"
*
* @param rhs Mandatory boolean parameter.
*/
@VTID(13)
void visible(
boolean rhs);
/**
* @param text Optional parameter. Default value is com4j.Variant.getMissing()
* @param start Optional parameter. Default value is com4j.Variant.getMissing()
* @param overwrite Optional parameter. Default value is com4j.Variant.getMissing()
* @return Returns a value of type java.lang.String
*/
@VTID(14)
java.lang.String text(
@Optional @MarshalAs(NativeType.VARIANT) java.lang.Object text,
@Optional @MarshalAs(NativeType.VARIANT) java.lang.Object start,
@Optional @MarshalAs(NativeType.VARIANT) java.lang.Object overwrite);
/**
*/
@VTID(15)
void delete();
/**
* @return Returns a value of type net.rgielen.com4j.office2010.excel.Comment
*/
@VTID(16)
net.rgielen.com4j.office2010.excel.Comment next();
/**
* @return Returns a value of type net.rgielen.com4j.office2010.excel.Comment
*/
@VTID(17)
net.rgielen.com4j.office2010.excel.Comment previous();
// Properties:
}