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

📄 field.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 Field extends Dispatch {	public static final String componentName = "Word.Field";	public Field() {		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 Field(Dispatch d) {		// take over the IDispatch pointer		m_pDispatch = d.m_pDispatch;		// null out the input's pointer		d.m_pDispatch = 0;	}	public Field(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 Range getCode() {		return new Range(Dispatch.get(this, "Code").toDispatch());	}	public void setCode(Range lastParam) {		Dispatch.put(this, "Code", lastParam);	}	public int getType() {		return Dispatch.get(this, "Type").toInt();	}	public boolean getLocked() {		return Dispatch.get(this, "Locked").toBoolean();	}	public void setLocked(boolean lastParam) {		Dispatch.put(this, "Locked", new Variant(lastParam));	}	public int getKind() {		return Dispatch.get(this, "Kind").toInt();	}	public Range getResult() {		return new Range(Dispatch.get(this, "Result").toDispatch());	}	public void setResult(Range lastParam) {		Dispatch.put(this, "Result", lastParam);	}	public String getData() {		return Dispatch.get(this, "Data").toString();	}	public void setData(String lastParam) {		Dispatch.put(this, "Data", lastParam);	}	public int getNext() {		return Dispatch.get(this, "Next").toInt();	}	public int getPrevious() {		return Dispatch.get(this, "Previous").toInt();	}	public int getIndex() {		return Dispatch.get(this, "Index").toInt();	}	public boolean getShowCodes() {		return Dispatch.get(this, "ShowCodes").toBoolean();	}	public void setShowCodes(boolean lastParam) {		Dispatch.put(this, "ShowCodes", new Variant(lastParam));	}	public LinkFormat getLinkFormat() {		return new LinkFormat(Dispatch.get(this, "LinkFormat").toDispatch());	}	public OLEFormat getOLEFormat() {		return new OLEFormat(Dispatch.get(this, "OLEFormat").toDispatch());	}	public InlineShape getInlineShape() {		return new InlineShape(Dispatch.get(this, "InlineShape").toDispatch());	}	public void select() {		Dispatch.call(this, "Select");	}	public boolean update() {		return Dispatch.call(this, "Update").toBoolean();	}	public void unlink() {		Dispatch.call(this, "Unlink");	}	public void updateSource() {		Dispatch.call(this, "UpdateSource");	}	public void doClick() {		Dispatch.call(this, "DoClick");	}	public void copy() {		Dispatch.call(this, "Copy");	}	public void cut() {		Dispatch.call(this, "Cut");	}	public void delete() {		Dispatch.call(this, "Delete");	}}

⌨️ 快捷键说明

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