net.rgielen.com4j.office2010.office.SharedWorkspaceLinks Maven / Gradle / Ivy
The newest version!
package net.rgielen.com4j.office2010.office ;
import com4j.*;
@IID("{000C0380-0000-0000-C000-000000000046}")
public interface SharedWorkspaceLinks extends net.rgielen.com4j.office2010.office._IMsoDispObj,Iterable {
// Methods:
/**
*
* Getter method for the COM property "_NewEnum"
*
*/
@DISPID(-4) //= 0xfffffffc. The runtime will prefer the VTID if present
@VTID(9)
java.util.Iterator iterator();
/**
*
* Getter method for the COM property "Item"
*
* @param index Mandatory int parameter.
* @return Returns a value of type net.rgielen.com4j.office2010.office.SharedWorkspaceLink
*/
@DISPID(0) //= 0x0. The runtime will prefer the VTID if present
@VTID(10)
@DefaultMethod
net.rgielen.com4j.office2010.office.SharedWorkspaceLink item(
int index);
/**
*
* Getter method for the COM property "Count"
*
* @return Returns a value of type int
*/
@DISPID(1) //= 0x1. The runtime will prefer the VTID if present
@VTID(11)
int count();
/**
* @param url Mandatory java.lang.String parameter.
* @param description Optional parameter. Default value is com4j.Variant.getMissing()
* @param notes Optional parameter. Default value is com4j.Variant.getMissing()
* @return Returns a value of type net.rgielen.com4j.office2010.office.SharedWorkspaceLink
*/
@DISPID(2) //= 0x2. The runtime will prefer the VTID if present
@VTID(12)
net.rgielen.com4j.office2010.office.SharedWorkspaceLink add(
java.lang.String url,
@Optional @MarshalAs(NativeType.VARIANT) java.lang.Object description,
@Optional @MarshalAs(NativeType.VARIANT) java.lang.Object notes);
/**
*
* Getter method for the COM property "Parent"
*
* @return Returns a value of type com4j.Com4jObject
*/
@DISPID(3) //= 0x3. The runtime will prefer the VTID if present
@VTID(13)
@ReturnValue(type=NativeType.Dispatch)
com4j.Com4jObject parent();
/**
*
* Getter method for the COM property "ItemCountExceeded"
*
* @return Returns a value of type boolean
*/
@DISPID(4) //= 0x4. The runtime will prefer the VTID if present
@VTID(14)
boolean itemCountExceeded();
// Properties:
}