?? hyperlinks.java
字號:
/** * JacobGen generated file --- do not edit * * (http://www.bigatti.it/projects/jacobgen) */package org.nethawker.excel11;import com.jacob.com.*;public class Hyperlinks extends Dispatch { public static final String componentName = "Excel.Hyperlinks"; public Hyperlinks() { super(componentName); } /** * This constructor is used instead of a case operation to * turn a Dispatch object into a wider object - it must exist * in every wrapper class whose instances may be returned from * method calls wrapped in VT_DISPATCH Variants. */ public Hyperlinks(Dispatch d) { // take over the IDispatch pointer m_pDispatch = d.m_pDispatch; // null out the input's pointer d.m_pDispatch = 0; } public Hyperlinks(String compName) { super(compName); } public Application getApplication() { return new Application(Dispatch.get(this, "Application").toDispatch()); } public int getCreator() { return Dispatch.get(this, "Creator").toInt(); } public Dispatch getParent() { return Dispatch.get(this, "Parent").toDispatch(); } public Dispatch add(Object anchor, String address, Variant lastParam) { return Dispatch.call(this, "Add", anchor, address, lastParam).toDispatch(); } public Dispatch add(Object anchor, String address) { return Dispatch.call(this, "Add", anchor, address).toDispatch(); } public int getCount() { return Dispatch.get(this, "Count").toInt(); } public Hyperlink getItem(Variant lastParam) { return new Hyperlink(Dispatch.call(this, "Item", lastParam).toDispatch()); } public Hyperlink get_Default(Variant lastParam) { return new Hyperlink(Dispatch.call(this, "_Default", lastParam).toDispatch()); } public Variant get_NewEnum() { return Dispatch.get(this, "_NewEnum"); } public void delete() { Dispatch.call(this, "Delete"); }}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -