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

📄 lineformat.java

📁 将Excel和Word的类型库都转换过来了
💻 JAVA
字号:
/** * JacobGen generated file --- do not edit * * (http://www.bigatti.it/projects/jacobgen) */package org.nethawker.excel11;import com.jacob.com.*;public class LineFormat extends Dispatch {	public static final String componentName = "Excel.LineFormat";	public LineFormat() {		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 LineFormat(Dispatch d) {		// take over the IDispatch pointer		m_pDispatch = d.m_pDispatch;		// null out the input's pointer		d.m_pDispatch = 0;	}	public LineFormat(String compName) {		super(compName);	}	public Dispatch getApplication() {		return Dispatch.get(this, "Application").toDispatch();	}	public int getCreator() {		return Dispatch.get(this, "Creator").toInt();	}	public Dispatch getParent() {		return Dispatch.get(this, "Parent").toDispatch();	}	public org.nethawker.office11.ColorFormat getBackColor() {		return new org.nethawker.office11.ColorFormat(Dispatch.get(this, "BackColor").toDispatch());	}	public void setBackColor(org.nethawker.office11.ColorFormat lastParam) {		Dispatch.put(this, "BackColor", lastParam);	}	public int getBeginArrowheadLength() {		return Dispatch.get(this, "BeginArrowheadLength").toInt();	}	public void setBeginArrowheadLength(int lastParam) {		Dispatch.put(this, "BeginArrowheadLength", new Variant(lastParam));	}	public int getBeginArrowheadStyle() {		return Dispatch.get(this, "BeginArrowheadStyle").toInt();	}	public void setBeginArrowheadStyle(int lastParam) {		Dispatch.put(this, "BeginArrowheadStyle", new Variant(lastParam));	}	public int getBeginArrowheadWidth() {		return Dispatch.get(this, "BeginArrowheadWidth").toInt();	}	public void setBeginArrowheadWidth(int lastParam) {		Dispatch.put(this, "BeginArrowheadWidth", new Variant(lastParam));	}	public int getDashStyle() {		return Dispatch.get(this, "DashStyle").toInt();	}	public void setDashStyle(int lastParam) {		Dispatch.put(this, "DashStyle", new Variant(lastParam));	}	public int getEndArrowheadLength() {		return Dispatch.get(this, "EndArrowheadLength").toInt();	}	public void setEndArrowheadLength(int lastParam) {		Dispatch.put(this, "EndArrowheadLength", new Variant(lastParam));	}	public int getEndArrowheadStyle() {		return Dispatch.get(this, "EndArrowheadStyle").toInt();	}	public void setEndArrowheadStyle(int lastParam) {		Dispatch.put(this, "EndArrowheadStyle", new Variant(lastParam));	}	public int getEndArrowheadWidth() {		return Dispatch.get(this, "EndArrowheadWidth").toInt();	}	public void setEndArrowheadWidth(int lastParam) {		Dispatch.put(this, "EndArrowheadWidth", new Variant(lastParam));	}	public org.nethawker.office11.ColorFormat getForeColor() {		return new org.nethawker.office11.ColorFormat(Dispatch.get(this, "ForeColor").toDispatch());	}	public void setForeColor(org.nethawker.office11.ColorFormat lastParam) {		Dispatch.put(this, "ForeColor", lastParam);	}	public int getPattern() {		return Dispatch.get(this, "Pattern").toInt();	}	public void setPattern(int lastParam) {		Dispatch.put(this, "Pattern", new Variant(lastParam));	}	public int getStyle() {		return Dispatch.get(this, "Style").toInt();	}	public void setStyle(int lastParam) {		Dispatch.put(this, "Style", new Variant(lastParam));	}	public float getTransparency() {		return Dispatch.get(this, "Transparency").toFloat();	}	public void setTransparency(float lastParam) {		Dispatch.put(this, "Transparency", new Variant(lastParam));	}	public int getVisible() {		return Dispatch.get(this, "Visible").toInt();	}	public void setVisible(int lastParam) {		Dispatch.put(this, "Visible", new Variant(lastParam));	}	public float getWeight() {		return Dispatch.get(this, "Weight").toFloat();	}	public void setWeight(float lastParam) {		Dispatch.put(this, "Weight", new Variant(lastParam));	}}

⌨️ 快捷键说明

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