⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 _application.java

📁 将Excel和Word的类型库都转换过来了
💻 JAVA
📖 第 1 页 / 共 5 页
字号:
/** * JacobGen generated file --- do not edit * * (http://www.bigatti.it/projects/jacobgen) */package org.nethawker.word11;import com.jacob.com.*;public class _Application extends Dispatch {	public static final String componentName = "Word._Application";	public _Application() {		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 _Application(Dispatch d) {		// take over the IDispatch pointer		m_pDispatch = d.m_pDispatch;		// null out the input's pointer		d.m_pDispatch = 0;	}	public _Application(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 String getName() {		return Dispatch.get(this, "Name").toString();	}	public Documents getDocuments() {		return new Documents(Dispatch.get(this, "Documents").toDispatch());	}	public Windows getWindows() {		return new Windows(Dispatch.get(this, "Windows").toDispatch());	}	public Document getActiveDocument() {		return new Document(Dispatch.get(this, "ActiveDocument").toDispatch());	}	public Window getActiveWindow() {		return new Window(Dispatch.get(this, "ActiveWindow").toDispatch());	}	public Selection getSelection() {		return new Selection(Dispatch.get(this, "Selection").toDispatch());	}	public Object getWordBasic() {		return Dispatch.get(this, "WordBasic");	}	public RecentFiles getRecentFiles() {		return new RecentFiles(Dispatch.get(this, "RecentFiles").toDispatch());	}	public Template getNormalTemplate() {		return new Template(Dispatch.get(this, "NormalTemplate").toDispatch());	}	public System getSystem() {		return new System(Dispatch.get(this, "System").toDispatch());	}	public AutoCorrect getAutoCorrect() {		return new AutoCorrect(Dispatch.get(this, "AutoCorrect").toDispatch());	}	public FontNames getFontNames() {		return new FontNames(Dispatch.get(this, "FontNames").toDispatch());	}	public FontNames getLandscapeFontNames() {		return new FontNames(Dispatch.get(this, "LandscapeFontNames").toDispatch());	}	public FontNames getPortraitFontNames() {		return new FontNames(Dispatch.get(this, "PortraitFontNames").toDispatch());	}	public Languages getLanguages() {		return new Languages(Dispatch.get(this, "Languages").toDispatch());	}	public org.nethawker.office11.Assistant getAssistant() {		return new org.nethawker.office11.Assistant(Dispatch.get(this, "Assistant").toDispatch());	}	public Browser getBrowser() {		return new Browser(Dispatch.get(this, "Browser").toDispatch());	}	public FileConverters getFileConverters() {		return new FileConverters(Dispatch.get(this, "FileConverters").toDispatch());	}	public MailingLabel getMailingLabel() {		return new MailingLabel(Dispatch.get(this, "MailingLabel").toDispatch());	}	public Dialogs getDialogs() {		return new Dialogs(Dispatch.get(this, "Dialogs").toDispatch());	}	public CaptionLabels getCaptionLabels() {		return new CaptionLabels(Dispatch.get(this, "CaptionLabels").toDispatch());	}	public AutoCaptions getAutoCaptions() {		return new AutoCaptions(Dispatch.get(this, "AutoCaptions").toDispatch());	}	public AddIns getAddIns() {		return new AddIns(Dispatch.get(this, "AddIns").toDispatch());	}	public boolean getVisible() {		return Dispatch.get(this, "Visible").toBoolean();	}	public void setVisible(boolean lastParam) {		Dispatch.put(this, "Visible", new Variant(lastParam));	}	public String getVersion() {		return Dispatch.get(this, "Version").toString();	}	public boolean getScreenUpdating() {		return Dispatch.get(this, "ScreenUpdating").toBoolean();	}	public void setScreenUpdating(boolean lastParam) {		Dispatch.put(this, "ScreenUpdating", new Variant(lastParam));	}	public boolean getPrintPreview() {		return Dispatch.get(this, "PrintPreview").toBoolean();	}	public void setPrintPreview(boolean lastParam) {		Dispatch.put(this, "PrintPreview", new Variant(lastParam));	}	public Tasks getTasks() {		return new Tasks(Dispatch.get(this, "Tasks").toDispatch());	}	public boolean getDisplayStatusBar() {		return Dispatch.get(this, "DisplayStatusBar").toBoolean();	}	public void setDisplayStatusBar(boolean lastParam) {		Dispatch.put(this, "DisplayStatusBar", new Variant(lastParam));	}	public boolean getSpecialMode() {		return Dispatch.get(this, "SpecialMode").toBoolean();	}	public int getUsableWidth() {		return Dispatch.get(this, "UsableWidth").toInt();	}	public int getUsableHeight() {		return Dispatch.get(this, "UsableHeight").toInt();	}	public boolean getMathCoprocessorAvailable() {		return Dispatch.get(this, "MathCoprocessorAvailable").toBoolean();	}	public boolean getMouseAvailable() {		return Dispatch.get(this, "MouseAvailable").toBoolean();	}	public Variant getInternational(int lastParam) {		return Dispatch.call(this, "International", new Variant(lastParam));	}	public String getBuild() {		return Dispatch.get(this, "Build").toString();	}	public boolean getCapsLock() {		return Dispatch.get(this, "CapsLock").toBoolean();	}	public boolean getNumLock() {		return Dispatch.get(this, "NumLock").toBoolean();	}	public String getUserName() {		return Dispatch.get(this, "UserName").toString();	}	public void setUserName(String lastParam) {		Dispatch.put(this, "UserName", lastParam);	}	public String getUserInitials() {		return Dispatch.get(this, "UserInitials").toString();	}	public void setUserInitials(String lastParam) {		Dispatch.put(this, "UserInitials", lastParam);	}	public String getUserAddress() {		return Dispatch.get(this, "UserAddress").toString();	}	public void setUserAddress(String lastParam) {		Dispatch.put(this, "UserAddress", lastParam);	}	public Object getMacroContainer() {		return Dispatch.get(this, "MacroContainer");	}	public boolean getDisplayRecentFiles() {		return Dispatch.get(this, "DisplayRecentFiles").toBoolean();	}	public void setDisplayRecentFiles(boolean lastParam) {		Dispatch.put(this, "DisplayRecentFiles", new Variant(lastParam));	}	public org.nethawker.office11.CommandBars getCommandBars() {		return new org.nethawker.office11.CommandBars(Dispatch.get(this, "CommandBars").toDispatch());	}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -