net.rgielen.com4j.office2010.word.RoutingSlip Maven / Gradle / Ivy
package net.rgielen.com4j.office2010.word ;
import com4j.*;
@IID("{00020969-0000-0000-C000-000000000046}")
public interface RoutingSlip extends Com4jObject {
// Methods:
/**
*
* Getter method for the COM property "Application"
*
* @return Returns a value of type net.rgielen.com4j.office2010.word._Application
*/
@DISPID(1000) //= 0x3e8. The runtime will prefer the VTID if present
@VTID(7)
net.rgielen.com4j.office2010.word._Application application();
/**
*
* Getter method for the COM property "Creator"
*
* @return Returns a value of type int
*/
@DISPID(1001) //= 0x3e9. The runtime will prefer the VTID if present
@VTID(8)
int creator();
/**
*
* Getter method for the COM property "Parent"
*
* @return Returns a value of type com4j.Com4jObject
*/
@DISPID(1002) //= 0x3ea. The runtime will prefer the VTID if present
@VTID(9)
@ReturnValue(type=NativeType.Dispatch)
com4j.Com4jObject parent();
/**
*
* Getter method for the COM property "Subject"
*
* @return Returns a value of type java.lang.String
*/
@DISPID(1) //= 0x1. The runtime will prefer the VTID if present
@VTID(10)
java.lang.String subject();
/**
*
* Setter method for the COM property "Subject"
*
* @param prop Mandatory java.lang.String parameter.
*/
@DISPID(1) //= 0x1. The runtime will prefer the VTID if present
@VTID(11)
void subject(
java.lang.String prop);
/**
*
* Getter method for the COM property "Message"
*
* @return Returns a value of type java.lang.String
*/
@DISPID(2) //= 0x2. The runtime will prefer the VTID if present
@VTID(12)
java.lang.String message();
/**
*
* Setter method for the COM property "Message"
*
* @param prop Mandatory java.lang.String parameter.
*/
@DISPID(2) //= 0x2. The runtime will prefer the VTID if present
@VTID(13)
void message(
java.lang.String prop);
/**
*
* Getter method for the COM property "Delivery"
*
* @return Returns a value of type net.rgielen.com4j.office2010.word.WdRoutingSlipDelivery
*/
@DISPID(3) //= 0x3. The runtime will prefer the VTID if present
@VTID(14)
net.rgielen.com4j.office2010.word.WdRoutingSlipDelivery delivery();
/**
*
* Setter method for the COM property "Delivery"
*
* @param prop Mandatory net.rgielen.com4j.office2010.word.WdRoutingSlipDelivery parameter.
*/
@DISPID(3) //= 0x3. The runtime will prefer the VTID if present
@VTID(15)
void delivery(
net.rgielen.com4j.office2010.word.WdRoutingSlipDelivery prop);
/**
*
* Getter method for the COM property "TrackStatus"
*
* @return Returns a value of type boolean
*/
@DISPID(4) //= 0x4. The runtime will prefer the VTID if present
@VTID(16)
boolean trackStatus();
/**
*
* Setter method for the COM property "TrackStatus"
*
* @param prop Mandatory boolean parameter.
*/
@DISPID(4) //= 0x4. The runtime will prefer the VTID if present
@VTID(17)
void trackStatus(
boolean prop);
/**
*
* Getter method for the COM property "Protect"
*
* @return Returns a value of type net.rgielen.com4j.office2010.word.WdProtectionType
*/
@DISPID(5) //= 0x5. The runtime will prefer the VTID if present
@VTID(18)
net.rgielen.com4j.office2010.word.WdProtectionType protect();
/**
*
* Setter method for the COM property "Protect"
*
* @param prop Mandatory net.rgielen.com4j.office2010.word.WdProtectionType parameter.
*/
@DISPID(5) //= 0x5. The runtime will prefer the VTID if present
@VTID(19)
void protect(
net.rgielen.com4j.office2010.word.WdProtectionType prop);
/**
*
* Getter method for the COM property "ReturnWhenDone"
*
* @return Returns a value of type boolean
*/
@DISPID(6) //= 0x6. The runtime will prefer the VTID if present
@VTID(20)
boolean returnWhenDone();
/**
*
* Setter method for the COM property "ReturnWhenDone"
*
* @param prop Mandatory boolean parameter.
*/
@DISPID(6) //= 0x6. The runtime will prefer the VTID if present
@VTID(21)
void returnWhenDone(
boolean prop);
/**
*
* Getter method for the COM property "Status"
*
* @return Returns a value of type net.rgielen.com4j.office2010.word.WdRoutingSlipStatus
*/
@DISPID(7) //= 0x7. The runtime will prefer the VTID if present
@VTID(22)
net.rgielen.com4j.office2010.word.WdRoutingSlipStatus status();
/**
*
* Getter method for the COM property "Recipients"
*
* @param index Optional parameter. Default value is com4j.Variant.getMissing()
* @return Returns a value of type java.lang.Object
*/
@DISPID(9) //= 0x9. The runtime will prefer the VTID if present
@VTID(23)
@ReturnValue(type=NativeType.VARIANT)
java.lang.Object recipients(
@Optional java.lang.Object index);
/**
*/
@DISPID(101) //= 0x65. The runtime will prefer the VTID if present
@VTID(24)
void reset();
/**
* @param recipient Mandatory java.lang.String parameter.
*/
@DISPID(102) //= 0x66. The runtime will prefer the VTID if present
@VTID(25)
void addRecipient(
java.lang.String recipient);
// Properties:
}