net.rgielen.com4j.office2010.excel.ITableStyle Maven / Gradle / Ivy
package net.rgielen.com4j.office2010.excel ;
import com4j.*;
@IID("{000244A7-0001-0000-C000-000000000046}")
public interface ITableStyle 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 "_Default"
*
* @return Returns a value of type java.lang.String
*/
@VTID(10)
@DefaultMethod
java.lang.String _Default();
/**
*
* Getter method for the COM property "Name"
*
* @return Returns a value of type java.lang.String
*/
@VTID(11)
java.lang.String name();
/**
*
* Getter method for the COM property "NameLocal"
*
* @return Returns a value of type java.lang.String
*/
@VTID(12)
java.lang.String nameLocal();
/**
*
* Getter method for the COM property "BuiltIn"
*
* @return Returns a value of type boolean
*/
@VTID(13)
boolean builtIn();
/**
*
* Getter method for the COM property "TableStyleElements"
*
* @return Returns a value of type net.rgielen.com4j.office2010.excel.TableStyleElements
*/
@VTID(14)
net.rgielen.com4j.office2010.excel.TableStyleElements tableStyleElements();
/**
*
* Getter method for the COM property "ShowAsAvailableTableStyle"
*
* @return Returns a value of type boolean
*/
@VTID(15)
boolean showAsAvailableTableStyle();
/**
*
* Setter method for the COM property "ShowAsAvailableTableStyle"
*
* @param rhs Mandatory boolean parameter.
*/
@VTID(16)
void showAsAvailableTableStyle(
boolean rhs);
/**
*
* Getter method for the COM property "ShowAsAvailablePivotTableStyle"
*
* @return Returns a value of type boolean
*/
@VTID(17)
boolean showAsAvailablePivotTableStyle();
/**
*
* Setter method for the COM property "ShowAsAvailablePivotTableStyle"
*
* @param rhs Mandatory boolean parameter.
*/
@VTID(18)
void showAsAvailablePivotTableStyle(
boolean rhs);
/**
*/
@VTID(19)
void delete();
/**
* @param newTableStyleName Optional parameter. Default value is com4j.Variant.getMissing()
* @return Returns a value of type net.rgielen.com4j.office2010.excel.TableStyle
*/
@VTID(20)
net.rgielen.com4j.office2010.excel.TableStyle duplicate(
@Optional @MarshalAs(NativeType.VARIANT) java.lang.Object newTableStyleName);
/**
*
* Getter method for the COM property "ShowAsAvailableSlicerStyle"
*
* @return Returns a value of type boolean
*/
@VTID(21)
boolean showAsAvailableSlicerStyle();
/**
*
* Setter method for the COM property "ShowAsAvailableSlicerStyle"
*
* @param rhs Mandatory boolean parameter.
*/
@VTID(22)
void showAsAvailableSlicerStyle(
boolean rhs);
// Properties:
}