📄 applicationevents3.java
字号:
/** * JacobGen generated file --- do not edit * * (http://www.bigatti.it/projects/jacobgen) */package org.nethawker.word11;import com.jacob.com.*;public class ApplicationEvents3 extends Dispatch { public static final String componentName = "Word.ApplicationEvents3"; public ApplicationEvents3() { 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 ApplicationEvents3(Dispatch d) { // take over the IDispatch pointer m_pDispatch = d.m_pDispatch; // null out the input's pointer d.m_pDispatch = 0; } public ApplicationEvents3(String compName) { super(compName); } public void startup() { Dispatch.call(this, "Startup"); } public void quit() { Dispatch.call(this, "Quit"); } public void documentChange() { Dispatch.call(this, "DocumentChange"); } public void documentOpen(Document lastParam) { Dispatch.call(this, "DocumentOpen", lastParam); } public void documentBeforeClose(Document doc, boolean lastParam) { Dispatch.call(this, "DocumentBeforeClose", doc, new Variant(lastParam)); } public void documentBeforePrint(Document doc, boolean lastParam) { Dispatch.call(this, "DocumentBeforePrint", doc, new Variant(lastParam)); } public void documentBeforeSave(Document doc, boolean saveAsUI, boolean lastParam) { Dispatch.call(this, "DocumentBeforeSave", doc, new Variant(saveAsUI), new Variant(lastParam)); } public void newDocument(Document lastParam) { Dispatch.call(this, "NewDocument", lastParam); } public void windowActivate(Document doc, Window lastParam) { Dispatch.call(this, "WindowActivate", doc, lastParam); } public void windowDeactivate(Document doc, Window lastParam) { Dispatch.call(this, "WindowDeactivate", doc, lastParam); } public void windowSelectionChange(Selection lastParam) { Dispatch.call(this, "WindowSelectionChange", lastParam); } public void windowBeforeRightClick(Selection sel, boolean lastParam) { Dispatch.call(this, "WindowBeforeRightClick", sel, new Variant(lastParam)); } public void windowBeforeDoubleClick(Selection sel, boolean lastParam) { Dispatch.call(this, "WindowBeforeDoubleClick", sel, new Variant(lastParam)); } public void ePostagePropertyDialog(Document lastParam) { Dispatch.call(this, "EPostagePropertyDialog", lastParam); } public void ePostageInsert(Document lastParam) { Dispatch.call(this, "EPostageInsert", lastParam); } public void mailMergeAfterMerge(Document doc, Document lastParam) { Dispatch.call(this, "MailMergeAfterMerge", doc, lastParam); } public void mailMergeAfterRecordMerge(Document lastParam) { Dispatch.call(this, "MailMergeAfterRecordMerge", lastParam); } public void mailMergeBeforeMerge(Document doc, int startRecord, int endRecord, boolean lastParam) { Dispatch.call(this, "MailMergeBeforeMerge", doc, new Variant(startRecord), new Variant(endRecord), new Variant(lastParam)); } public void mailMergeBeforeRecordMerge(Document doc, boolean lastParam) { Dispatch.call(this, "MailMergeBeforeRecordMerge", doc, new Variant(lastParam)); } public void mailMergeDataSourceLoad(Document lastParam) { Dispatch.call(this, "MailMergeDataSourceLoad", lastParam); } public void mailMergeDataSourceValidate(Document doc, boolean lastParam) { Dispatch.call(this, "MailMergeDataSourceValidate", doc, new Variant(lastParam)); } public void mailMergeWizardSendToCustom(Document lastParam) { Dispatch.call(this, "MailMergeWizardSendToCustom", lastParam); } public void mailMergeWizardStateChange(Document doc, int fromState, int toState, boolean lastParam) { Dispatch.call(this, "MailMergeWizardStateChange", doc, new Variant(fromState), new Variant(toState), new Variant(lastParam)); } public void windowSize(Document doc, Window lastParam) { Dispatch.call(this, "WindowSize", doc, lastParam); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -