tableofauthorities.java
来自「将Excel和Word的类型库都转换过来了」· Java 代码 · 共 148 行
JAVA
148 行
/** * JacobGen generated file --- do not edit * * (http://www.bigatti.it/projects/jacobgen) */package org.nethawker.word11;import com.jacob.com.*;public class TableOfAuthorities extends Dispatch { public static final String componentName = "Word.TableOfAuthorities"; public TableOfAuthorities() { 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 TableOfAuthorities(Dispatch d) { // take over the IDispatch pointer m_pDispatch = d.m_pDispatch; // null out the input's pointer d.m_pDispatch = 0; } public TableOfAuthorities(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 Object getParent() { return Dispatch.get(this, "Parent"); } public boolean getPassim() { return Dispatch.get(this, "Passim").toBoolean(); } public void setPassim(boolean lastParam) { Dispatch.put(this, "Passim", new Variant(lastParam)); } public boolean getKeepEntryFormatting() { return Dispatch.get(this, "KeepEntryFormatting").toBoolean(); } public void setKeepEntryFormatting(boolean lastParam) { Dispatch.put(this, "KeepEntryFormatting", new Variant(lastParam)); } public int getCategory() { return Dispatch.get(this, "Category").toInt(); } public void setCategory(int lastParam) { Dispatch.put(this, "Category", new Variant(lastParam)); } public String getBookmark() { return Dispatch.get(this, "Bookmark").toString(); } public void setBookmark(String lastParam) { Dispatch.put(this, "Bookmark", lastParam); } public String getSeparator() { return Dispatch.get(this, "Separator").toString(); } public void setSeparator(String lastParam) { Dispatch.put(this, "Separator", lastParam); } public String getIncludeSequenceName() { return Dispatch.get(this, "IncludeSequenceName").toString(); } public void setIncludeSequenceName(String lastParam) { Dispatch.put(this, "IncludeSequenceName", lastParam); } public String getEntrySeparator() { return Dispatch.get(this, "EntrySeparator").toString(); } public void setEntrySeparator(String lastParam) { Dispatch.put(this, "EntrySeparator", lastParam); } public String getPageRangeSeparator() { return Dispatch.get(this, "PageRangeSeparator").toString(); } public void setPageRangeSeparator(String lastParam) { Dispatch.put(this, "PageRangeSeparator", lastParam); } public boolean getIncludeCategoryHeader() { return Dispatch.get(this, "IncludeCategoryHeader").toBoolean(); } public void setIncludeCategoryHeader(boolean lastParam) { Dispatch.put(this, "IncludeCategoryHeader", new Variant(lastParam)); } public String getPageNumberSeparator() { return Dispatch.get(this, "PageNumberSeparator").toString(); } public void setPageNumberSeparator(String lastParam) { Dispatch.put(this, "PageNumberSeparator", lastParam); } public Range getRange() { return new Range(Dispatch.get(this, "Range").toDispatch()); } public int getTabLeader() { return Dispatch.get(this, "TabLeader").toInt(); } public void setTabLeader(int lastParam) { Dispatch.put(this, "TabLeader", new Variant(lastParam)); } public void delete() { Dispatch.call(this, "Delete"); } public void update() { Dispatch.call(this, "Update"); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?