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

📄 autocorrect.java

📁 将Excel和Word的类型库都转换过来了
💻 JAVA
字号:
/** * JacobGen generated file --- do not edit * * (http://www.bigatti.it/projects/jacobgen) */package org.nethawker.word11;import com.jacob.com.*;public class AutoCorrect extends Dispatch {	public static final String componentName = "Word.AutoCorrect";	public AutoCorrect() {		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 AutoCorrect(Dispatch d) {		// take over the IDispatch pointer		m_pDispatch = d.m_pDispatch;		// null out the input's pointer		d.m_pDispatch = 0;	}	public AutoCorrect(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 getCorrectDays() {		return Dispatch.get(this, "CorrectDays").toBoolean();	}	public void setCorrectDays(boolean lastParam) {		Dispatch.put(this, "CorrectDays", new Variant(lastParam));	}	public boolean getCorrectInitialCaps() {		return Dispatch.get(this, "CorrectInitialCaps").toBoolean();	}	public void setCorrectInitialCaps(boolean lastParam) {		Dispatch.put(this, "CorrectInitialCaps", new Variant(lastParam));	}	public boolean getCorrectSentenceCaps() {		return Dispatch.get(this, "CorrectSentenceCaps").toBoolean();	}	public void setCorrectSentenceCaps(boolean lastParam) {		Dispatch.put(this, "CorrectSentenceCaps", new Variant(lastParam));	}	public boolean getReplaceText() {		return Dispatch.get(this, "ReplaceText").toBoolean();	}	public void setReplaceText(boolean lastParam) {		Dispatch.put(this, "ReplaceText", new Variant(lastParam));	}	public AutoCorrectEntries getEntries() {		return new AutoCorrectEntries(Dispatch.get(this, "Entries").toDispatch());	}	public FirstLetterExceptions getFirstLetterExceptions() {		return new FirstLetterExceptions(Dispatch.get(this, "FirstLetterExceptions").toDispatch());	}	public boolean getFirstLetterAutoAdd() {		return Dispatch.get(this, "FirstLetterAutoAdd").toBoolean();	}	public void setFirstLetterAutoAdd(boolean lastParam) {		Dispatch.put(this, "FirstLetterAutoAdd", new Variant(lastParam));	}	public TwoInitialCapsExceptions getTwoInitialCapsExceptions() {		return new TwoInitialCapsExceptions(Dispatch.get(this, "TwoInitialCapsExceptions").toDispatch());	}	public boolean getTwoInitialCapsAutoAdd() {		return Dispatch.get(this, "TwoInitialCapsAutoAdd").toBoolean();	}	public void setTwoInitialCapsAutoAdd(boolean lastParam) {		Dispatch.put(this, "TwoInitialCapsAutoAdd", new Variant(lastParam));	}	public boolean getCorrectCapsLock() {		return Dispatch.get(this, "CorrectCapsLock").toBoolean();	}	public void setCorrectCapsLock(boolean lastParam) {		Dispatch.put(this, "CorrectCapsLock", new Variant(lastParam));	}	public boolean getCorrectHangulAndAlphabet() {		return Dispatch.get(this, "CorrectHangulAndAlphabet").toBoolean();	}	public void setCorrectHangulAndAlphabet(boolean lastParam) {		Dispatch.put(this, "CorrectHangulAndAlphabet", new Variant(lastParam));	}	public HangulAndAlphabetExceptions getHangulAndAlphabetExceptions() {		return new HangulAndAlphabetExceptions(Dispatch.get(this, "HangulAndAlphabetExceptions").toDispatch());	}	public boolean getHangulAndAlphabetAutoAdd() {		return Dispatch.get(this, "HangulAndAlphabetAutoAdd").toBoolean();	}	public void setHangulAndAlphabetAutoAdd(boolean lastParam) {		Dispatch.put(this, "HangulAndAlphabetAutoAdd", new Variant(lastParam));	}	public boolean getReplaceTextFromSpellingChecker() {		return Dispatch.get(this, "ReplaceTextFromSpellingChecker").toBoolean();	}	public void setReplaceTextFromSpellingChecker(boolean lastParam) {		Dispatch.put(this, "ReplaceTextFromSpellingChecker", new Variant(lastParam));	}	public boolean getOtherCorrectionsAutoAdd() {		return Dispatch.get(this, "OtherCorrectionsAutoAdd").toBoolean();	}	public void setOtherCorrectionsAutoAdd(boolean lastParam) {		Dispatch.put(this, "OtherCorrectionsAutoAdd", new Variant(lastParam));	}	public OtherCorrectionsExceptions getOtherCorrectionsExceptions() {		return new OtherCorrectionsExceptions(Dispatch.get(this, "OtherCorrectionsExceptions").toDispatch());	}	public boolean getCorrectKeyboardSetting() {		return Dispatch.get(this, "CorrectKeyboardSetting").toBoolean();	}	public void setCorrectKeyboardSetting(boolean lastParam) {		Dispatch.put(this, "CorrectKeyboardSetting", new Variant(lastParam));	}	public boolean getCorrectTableCells() {		return Dispatch.get(this, "CorrectTableCells").toBoolean();	}	public void setCorrectTableCells(boolean lastParam) {		Dispatch.put(this, "CorrectTableCells", new Variant(lastParam));	}	public boolean getDisplayAutoCorrectOptions() {		return Dispatch.get(this, "DisplayAutoCorrectOptions").toBoolean();	}	public void setDisplayAutoCorrectOptions(boolean lastParam) {		Dispatch.put(this, "DisplayAutoCorrectOptions", new Variant(lastParam));	}}

⌨️ 快捷键说明

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