net.rgielen.com4j.office2010.office.Adjustments Maven / Gradle / Ivy
The newest version!
package net.rgielen.com4j.office2010.office ;
import com4j.*;
@IID("{000C0310-0000-0000-C000-000000000046}")
public interface Adjustments extends net.rgielen.com4j.office2010.office._IMsoDispObj {
// Methods:
/**
*
* Getter method for the COM property "Parent"
*
* @return Returns a value of type com4j.Com4jObject
*/
@DISPID(1) //= 0x1. The runtime will prefer the VTID if present
@VTID(9)
@ReturnValue(type=NativeType.Dispatch)
com4j.Com4jObject parent();
/**
*
* Getter method for the COM property "Count"
*
* @return Returns a value of type int
*/
@DISPID(2) //= 0x2. The runtime will prefer the VTID if present
@VTID(10)
int count();
/**
*
* Getter method for the COM property "Item"
*
* @param index Mandatory int parameter.
* @return Returns a value of type float
*/
@DISPID(0) //= 0x0. The runtime will prefer the VTID if present
@VTID(11)
@DefaultMethod
float item(
int index);
/**
*
* Setter method for the COM property "Item"
*
* @param index Mandatory int parameter.
* @param val Mandatory float parameter.
*/
@DISPID(0) //= 0x0. The runtime will prefer the VTID if present
@VTID(12)
@DefaultMethod
void item(
int index,
float val);
// Properties:
}