net.rgielen.com4j.office2010.excel.IMailer Maven / Gradle / Ivy
package net.rgielen.com4j.office2010.excel ;
import com4j.*;
@IID("{000208D1-0001-0000-C000-000000000046}")
public interface IMailer 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 "BCCRecipients"
*
* @return Returns a value of type java.lang.Object
*/
@VTID(10)
@ReturnValue(type=NativeType.VARIANT)
java.lang.Object bccRecipients();
/**
*
* Setter method for the COM property "BCCRecipients"
*
* @param rhs Mandatory java.lang.Object parameter.
*/
@VTID(11)
void bccRecipients(
@MarshalAs(NativeType.VARIANT) java.lang.Object rhs);
/**
*
* Getter method for the COM property "CCRecipients"
*
* @return Returns a value of type java.lang.Object
*/
@VTID(12)
@ReturnValue(type=NativeType.VARIANT)
java.lang.Object ccRecipients();
/**
*
* Setter method for the COM property "CCRecipients"
*
* @param rhs Mandatory java.lang.Object parameter.
*/
@VTID(13)
void ccRecipients(
@MarshalAs(NativeType.VARIANT) java.lang.Object rhs);
/**
*
* Getter method for the COM property "Enclosures"
*
* @return Returns a value of type java.lang.Object
*/
@VTID(14)
@ReturnValue(type=NativeType.VARIANT)
java.lang.Object enclosures();
/**
*
* Setter method for the COM property "Enclosures"
*
* @param rhs Mandatory java.lang.Object parameter.
*/
@VTID(15)
void enclosures(
@MarshalAs(NativeType.VARIANT) java.lang.Object rhs);
/**
*
* Getter method for the COM property "Received"
*
* @return Returns a value of type boolean
*/
@VTID(16)
boolean received();
/**
*
* Getter method for the COM property "SendDateTime"
*
* @return Returns a value of type java.util.Date
*/
@VTID(17)
java.util.Date sendDateTime();
/**
*
* Getter method for the COM property "Sender"
*
* @return Returns a value of type java.lang.String
*/
@VTID(18)
java.lang.String sender();
/**
*
* Getter method for the COM property "Subject"
*
* @return Returns a value of type java.lang.String
*/
@VTID(19)
java.lang.String subject();
/**
*
* Setter method for the COM property "Subject"
*
* @param rhs Mandatory java.lang.String parameter.
*/
@VTID(20)
void subject(
java.lang.String rhs);
/**
*
* Getter method for the COM property "ToRecipients"
*
* @return Returns a value of type java.lang.Object
*/
@VTID(21)
@ReturnValue(type=NativeType.VARIANT)
java.lang.Object toRecipients();
/**
*
* Setter method for the COM property "ToRecipients"
*
* @param rhs Mandatory java.lang.Object parameter.
*/
@VTID(22)
void toRecipients(
@MarshalAs(NativeType.VARIANT) java.lang.Object rhs);
/**
*
* Getter method for the COM property "WhichAddress"
*
* @return Returns a value of type java.lang.Object
*/
@VTID(23)
@ReturnValue(type=NativeType.VARIANT)
java.lang.Object whichAddress();
/**
*
* Setter method for the COM property "WhichAddress"
*
* @param rhs Mandatory java.lang.Object parameter.
*/
@VTID(24)
void whichAddress(
@MarshalAs(NativeType.VARIANT) java.lang.Object rhs);
// Properties:
}