net.rgielen.com4j.office2010.vba._CodePane Maven / Gradle / Ivy
The newest version!
package net.rgielen.com4j.office2010.vba ;
import com4j.*;
@IID("{0002E176-0000-0000-C000-000000000046}")
public interface _CodePane extends Com4jObject {
// Methods:
/**
*
* Getter method for the COM property "Collection"
*
* @return Returns a value of type net.rgielen.com4j.office2010.vba._CodePanes
*/
@DISPID(1610743808) //= 0x60020000. The runtime will prefer the VTID if present
@VTID(7)
net.rgielen.com4j.office2010.vba._CodePanes collection();
/**
*
* Getter method for the COM property "VBE"
*
* @return Returns a value of type net.rgielen.com4j.office2010.vba.VBE
*/
@DISPID(1610743809) //= 0x60020001. The runtime will prefer the VTID if present
@VTID(8)
net.rgielen.com4j.office2010.vba.VBE vbe();
/**
*
* Getter method for the COM property "Window"
*
* @return Returns a value of type net.rgielen.com4j.office2010.vba.Window
*/
@DISPID(1610743810) //= 0x60020002. The runtime will prefer the VTID if present
@VTID(9)
net.rgielen.com4j.office2010.vba.Window window();
/**
* @param startLine Mandatory Holder parameter.
* @param startColumn Mandatory Holder parameter.
* @param endLine Mandatory Holder parameter.
* @param endColumn Mandatory Holder parameter.
*/
@DISPID(1610743811) //= 0x60020003. The runtime will prefer the VTID if present
@VTID(10)
void getSelection(
Holder startLine,
Holder startColumn,
Holder endLine,
Holder endColumn);
/**
* @param startLine Mandatory int parameter.
* @param startColumn Mandatory int parameter.
* @param endLine Mandatory int parameter.
* @param endColumn Mandatory int parameter.
*/
@DISPID(1610743812) //= 0x60020004. The runtime will prefer the VTID if present
@VTID(11)
void setSelection(
int startLine,
int startColumn,
int endLine,
int endColumn);
/**
*
* Getter method for the COM property "TopLine"
*
* @return Returns a value of type int
*/
@DISPID(1610743813) //= 0x60020005. The runtime will prefer the VTID if present
@VTID(12)
int topLine();
/**
*
* Setter method for the COM property "TopLine"
*
* @param topLine Mandatory int parameter.
*/
@DISPID(1610743813) //= 0x60020005. The runtime will prefer the VTID if present
@VTID(13)
void topLine(
int topLine);
/**
*
* Getter method for the COM property "CountOfVisibleLines"
*
* @return Returns a value of type int
*/
@DISPID(1610743815) //= 0x60020007. The runtime will prefer the VTID if present
@VTID(14)
int countOfVisibleLines();
/**
*
* Getter method for the COM property "CodeModule"
*
* @return Returns a value of type net.rgielen.com4j.office2010.vba._CodeModule
*/
@DISPID(1610743816) //= 0x60020008. The runtime will prefer the VTID if present
@VTID(15)
net.rgielen.com4j.office2010.vba._CodeModule codeModule();
/**
*/
@DISPID(1610743817) //= 0x60020009. The runtime will prefer the VTID if present
@VTID(16)
void show();
/**
*
* Getter method for the COM property "CodePaneView"
*
* @return Returns a value of type net.rgielen.com4j.office2010.vba.vbext_CodePaneview
*/
@DISPID(1610743818) //= 0x6002000a. The runtime will prefer the VTID if present
@VTID(17)
net.rgielen.com4j.office2010.vba.vbext_CodePaneview codePaneView();
// Properties:
}