net.rgielen.com4j.office2010.excel.TextFrame Maven / Gradle / Ivy
package net.rgielen.com4j.office2010.excel ;
import com4j.*;
@IID("{00020400-0000-0000-C000-000000000046}")
public interface TextFrame extends Com4jObject {
// Methods:
/**
*
* Getter method for the COM property "Application"
*
*/
@DISPID(148)
@PropGet
net.rgielen.com4j.office2010.excel._Application application();
/**
*
* Getter method for the COM property "Creator"
*
*/
@DISPID(149)
@PropGet
net.rgielen.com4j.office2010.excel.XlCreator creator();
/**
*
* Getter method for the COM property "Parent"
*
*/
@DISPID(150)
@PropGet
com4j.Com4jObject parent();
/**
*
* Getter method for the COM property "MarginBottom"
*
*/
@DISPID(1745)
@PropGet
float marginBottom();
/**
*
* Setter method for the COM property "MarginBottom"
*
* @param rhs Mandatory float parameter.
*/
@DISPID(1745)
@PropPut
void marginBottom(
float rhs);
/**
*
* Getter method for the COM property "MarginLeft"
*
*/
@DISPID(1746)
@PropGet
float marginLeft();
/**
*
* Setter method for the COM property "MarginLeft"
*
* @param rhs Mandatory float parameter.
*/
@DISPID(1746)
@PropPut
void marginLeft(
float rhs);
/**
*
* Getter method for the COM property "MarginRight"
*
*/
@DISPID(1747)
@PropGet
float marginRight();
/**
*
* Setter method for the COM property "MarginRight"
*
* @param rhs Mandatory float parameter.
*/
@DISPID(1747)
@PropPut
void marginRight(
float rhs);
/**
*
* Getter method for the COM property "MarginTop"
*
*/
@DISPID(1748)
@PropGet
float marginTop();
/**
*
* Setter method for the COM property "MarginTop"
*
* @param rhs Mandatory float parameter.
*/
@DISPID(1748)
@PropPut
void marginTop(
float rhs);
/**
*
* Getter method for the COM property "Orientation"
*
*/
@DISPID(134)
@PropGet
net.rgielen.com4j.office2010.office.MsoTextOrientation orientation();
/**
*
* Setter method for the COM property "Orientation"
*
* @param rhs Mandatory net.rgielen.com4j.office2010.office.MsoTextOrientation parameter.
*/
@DISPID(134)
@PropPut
void orientation(
net.rgielen.com4j.office2010.office.MsoTextOrientation rhs);
/**
* @param start Optional parameter. Default value is com4j.Variant.getMissing()
* @param length Optional parameter. Default value is com4j.Variant.getMissing()
*/
@DISPID(603)
net.rgielen.com4j.office2010.excel.Characters characters(
@Optional java.lang.Object start,
@Optional java.lang.Object length);
/**
*
* Getter method for the COM property "HorizontalAlignment"
*
*/
@DISPID(136)
@PropGet
net.rgielen.com4j.office2010.excel.XlHAlign horizontalAlignment();
/**
*
* Setter method for the COM property "HorizontalAlignment"
*
* @param rhs Mandatory net.rgielen.com4j.office2010.excel.XlHAlign parameter.
*/
@DISPID(136)
@PropPut
void horizontalAlignment(
net.rgielen.com4j.office2010.excel.XlHAlign rhs);
/**
*
* Getter method for the COM property "VerticalAlignment"
*
*/
@DISPID(137)
@PropGet
net.rgielen.com4j.office2010.excel.XlVAlign verticalAlignment();
/**
*
* Setter method for the COM property "VerticalAlignment"
*
* @param rhs Mandatory net.rgielen.com4j.office2010.excel.XlVAlign parameter.
*/
@DISPID(137)
@PropPut
void verticalAlignment(
net.rgielen.com4j.office2010.excel.XlVAlign rhs);
/**
*
* Getter method for the COM property "AutoSize"
*
*/
@DISPID(614)
@PropGet
boolean autoSize();
/**
*
* Setter method for the COM property "AutoSize"
*
* @param rhs Mandatory boolean parameter.
*/
@DISPID(614)
@PropPut
void autoSize(
boolean rhs);
/**
*
* Getter method for the COM property "ReadingOrder"
*
*/
@DISPID(975)
@PropGet
int readingOrder();
/**
*
* Setter method for the COM property "ReadingOrder"
*
* @param rhs Mandatory int parameter.
*/
@DISPID(975)
@PropPut
void readingOrder(
int rhs);
/**
*
* Getter method for the COM property "AutoMargins"
*
*/
@DISPID(1749)
@PropGet
boolean autoMargins();
/**
*
* Setter method for the COM property "AutoMargins"
*
* @param rhs Mandatory boolean parameter.
*/
@DISPID(1749)
@PropPut
void autoMargins(
boolean rhs);
/**
*
* Getter method for the COM property "VerticalOverflow"
*
*/
@DISPID(2922)
@PropGet
net.rgielen.com4j.office2010.excel.XlOartVerticalOverflow verticalOverflow();
/**
*
* Setter method for the COM property "VerticalOverflow"
*
* @param rhs Mandatory net.rgielen.com4j.office2010.excel.XlOartVerticalOverflow parameter.
*/
@DISPID(2922)
@PropPut
void verticalOverflow(
net.rgielen.com4j.office2010.excel.XlOartVerticalOverflow rhs);
/**
*
* Getter method for the COM property "HorizontalOverflow"
*
*/
@DISPID(2923)
@PropGet
net.rgielen.com4j.office2010.excel.XlOartHorizontalOverflow horizontalOverflow();
/**
*
* Setter method for the COM property "HorizontalOverflow"
*
* @param rhs Mandatory net.rgielen.com4j.office2010.excel.XlOartHorizontalOverflow parameter.
*/
@DISPID(2923)
@PropPut
void horizontalOverflow(
net.rgielen.com4j.office2010.excel.XlOartHorizontalOverflow rhs);
// Properties:
}