?? phonetic.java
字號:
/** * JacobGen generated file --- do not edit * * (http://www.bigatti.it/projects/jacobgen) */package org.nethawker.excel11;import com.jacob.com.*;public class Phonetic extends Dispatch { public static final String componentName = "Excel.Phonetic"; public Phonetic() { 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 Phonetic(Dispatch d) { // take over the IDispatch pointer m_pDispatch = d.m_pDispatch; // null out the input's pointer d.m_pDispatch = 0; } public Phonetic(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 boolean getVisible() { return Dispatch.get(this, "Visible").toBoolean(); } public void setVisible(boolean lastParam) { Dispatch.put(this, "Visible", new Variant(lastParam)); } public int getCharacterType() { return Dispatch.get(this, "CharacterType").toInt(); } public void setCharacterType(int lastParam) { Dispatch.put(this, "CharacterType", new Variant(lastParam)); } public int getAlignment() { return Dispatch.get(this, "Alignment").toInt(); } public void setAlignment(int lastParam) { Dispatch.put(this, "Alignment", new Variant(lastParam)); } public Font getFont() { return new Font(Dispatch.get(this, "Font").toDispatch()); } public String getText() { return Dispatch.get(this, "Text").toString(); } public void setText(String lastParam) { Dispatch.put(this, "Text", lastParam); }}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -