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

📄 series.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 Series extends Dispatch {	public static final String componentName = "Excel.Series";	public Series() {		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 Series(Dispatch d) {		// take over the IDispatch pointer		m_pDispatch = d.m_pDispatch;		// null out the input's pointer		d.m_pDispatch = 0;	}	public Series(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 Dispatch getParent() {		return Dispatch.get(this, "Parent").toDispatch();	}	public void applyDataLabels(int type, Variant legendKey, Variant autoText, Variant lastParam) {		Dispatch.call(this, "ApplyDataLabels", new Variant(type), legendKey, autoText, lastParam);	}	public void applyDataLabels(int type, Variant legendKey, Variant autoText) {		Dispatch.call(this, "ApplyDataLabels", new Variant(type), legendKey, autoText);	}	public void applyDataLabels(int type, Variant legendKey) {		Dispatch.call(this, "ApplyDataLabels", new Variant(type), legendKey);	}	public void applyDataLabels(int type) {		Dispatch.call(this, "ApplyDataLabels", new Variant(type));	}	public void applyDataLabels() {		Dispatch.call(this, "ApplyDataLabels");	}	public int getAxisGroup() {		return Dispatch.get(this, "AxisGroup").toInt();	}	public void setAxisGroup(int lastParam) {		Dispatch.put(this, "AxisGroup", new Variant(lastParam));	}	public Border getBorder() {		return new Border(Dispatch.get(this, "Border").toDispatch());	}	public void clearFormats() {		Dispatch.call(this, "ClearFormats");	}	public void copy() {		Dispatch.call(this, "Copy");	}	public Dispatch dataLabels(Variant lastParam) {		return Dispatch.call(this, "DataLabels", lastParam).toDispatch();	}	public Dispatch dataLabels() {		return Dispatch.call(this, "DataLabels").toDispatch();	}	public void delete() {		Dispatch.call(this, "Delete");	}	public void errorBar(int direction, int include, int type, Variant amount, Variant lastParam) {		Dispatch.call(this, "ErrorBar", new Variant(direction), new Variant(include), new Variant(type), amount, lastParam);	}	public void errorBar(int direction, int include, int type, Variant amount) {		Dispatch.call(this, "ErrorBar", new Variant(direction), new Variant(include), new Variant(type), amount);	}	public void errorBar(int direction, int include, int type) {		Dispatch.call(this, "ErrorBar", new Variant(direction), new Variant(include), new Variant(type));	}	public ErrorBars getErrorBars() {		return new ErrorBars(Dispatch.get(this, "ErrorBars").toDispatch());	}	public int getExplosion() {		return Dispatch.get(this, "Explosion").toInt();	}	public void setExplosion(int lastParam) {		Dispatch.put(this, "Explosion", new Variant(lastParam));	}	public String getFormula() {		return Dispatch.get(this, "Formula").toString();	}	public void setFormula(String lastParam) {		Dispatch.put(this, "Formula", lastParam);	}	public String getFormulaLocal() {		return Dispatch.get(this, "FormulaLocal").toString();	}	public void setFormulaLocal(String lastParam) {		Dispatch.put(this, "FormulaLocal", lastParam);	}	public String getFormulaR1C1() {		return Dispatch.get(this, "FormulaR1C1").toString();	}	public void setFormulaR1C1(String lastParam) {		Dispatch.put(this, "FormulaR1C1", lastParam);	}	public String getFormulaR1C1Local() {		return Dispatch.get(this, "FormulaR1C1Local").toString();	}	public void setFormulaR1C1Local(String lastParam) {		Dispatch.put(this, "FormulaR1C1Local", lastParam);	}	public boolean getHasDataLabels() {		return Dispatch.get(this, "HasDataLabels").toBoolean();	}	public void setHasDataLabels(boolean lastParam) {		Dispatch.put(this, "HasDataLabels", new Variant(lastParam));	}	public boolean getHasErrorBars() {		return Dispatch.get(this, "HasErrorBars").toBoolean();	}	public void setHasErrorBars(boolean lastParam) {		Dispatch.put(this, "HasErrorBars", new Variant(lastParam));	}	public Interior getInterior() {		return new Interior(Dispatch.get(this, "Interior").toDispatch());	}	public ChartFillFormat getFill() {		return new ChartFillFormat(Dispatch.get(this, "Fill").toDispatch());	}	public boolean getInvertIfNegative() {		return Dispatch.get(this, "InvertIfNegative").toBoolean();	}	public void setInvertIfNegative(boolean lastParam) {		Dispatch.put(this, "InvertIfNegative", new Variant(lastParam));	}	public int getMarkerBackgroundColor() {		return Dispatch.get(this, "MarkerBackgroundColor").toInt();	}	public void setMarkerBackgroundColor(int lastParam) {		Dispatch.put(this, "MarkerBackgroundColor", new Variant(lastParam));	}	public int getMarkerBackgroundColorIndex() {		return Dispatch.get(this, "MarkerBackgroundColorIndex").toInt();	}	public void setMarkerBackgroundColorIndex(int lastParam) {		Dispatch.put(this, "MarkerBackgroundColorIndex", new Variant(lastParam));	}	public int getMarkerForegroundColor() {		return Dispatch.get(this, "MarkerForegroundColor").toInt();	}	public void setMarkerForegroundColor(int lastParam) {		Dispatch.put(this, "MarkerForegroundColor", new Variant(lastParam));	}	public int getMarkerForegroundColorIndex() {		return Dispatch.get(this, "MarkerForegroundColorIndex").toInt();	}	public void setMarkerForegroundColorIndex(int lastParam) {		Dispatch.put(this, "MarkerForegroundColorIndex", new Variant(lastParam));	}	public int getMarkerSize() {		return Dispatch.get(this, "MarkerSize").toInt();	}	public void setMarkerSize(int lastParam) {		Dispatch.put(this, "MarkerSize", new Variant(lastParam));	}	public int getMarkerStyle() {		return Dispatch.get(this, "MarkerStyle").toInt();	}	public void setMarkerStyle(int lastParam) {		Dispatch.put(this, "MarkerStyle", new Variant(lastParam));	}	public String getName() {		return Dispatch.get(this, "Name").toString();	}	public void setName(String lastParam) {		Dispatch.put(this, "Name", lastParam);	}	public void paste() {		Dispatch.call(this, "Paste");	}	public int getPictureType() {		return Dispatch.get(this, "PictureType").toInt();	}	public void setPictureType(int lastParam) {		Dispatch.put(this, "PictureType", new Variant(lastParam));	}	public int getPictureUnit() {		return Dispatch.get(this, "PictureUnit").toInt();	}	public void setPictureUnit(int lastParam) {		Dispatch.put(this, "PictureUnit", new Variant(lastParam));	}	public int getPlotOrder() {		return Dispatch.get(this, "PlotOrder").toInt();	}	public void setPlotOrder(int lastParam) {		Dispatch.put(this, "PlotOrder", new Variant(lastParam));	}	public Dispatch points(Variant lastParam) {		return Dispatch.call(this, "Points", lastParam).toDispatch();	}	public Dispatch points() {		return Dispatch.call(this, "Points").toDispatch();	}	public void select() {		Dispatch.call(this, "Select");	}	public boolean getSmooth() {		return Dispatch.get(this, "Smooth").toBoolean();	}	public void setSmooth(boolean lastParam) {		Dispatch.put(this, "Smooth", new Variant(lastParam));	}	public Dispatch trendlines(Variant lastParam) {		return Dispatch.call(this, "Trendlines", lastParam).toDispatch();	}	public Dispatch trendlines() {		return Dispatch.call(this, "Trendlines").toDispatch();	}	public int getType() {		return Dispatch.get(this, "Type").toInt();	}	public void setType(int lastParam) {		Dispatch.put(this, "Type", new Variant(lastParam));	}	public int getChartType() {		return Dispatch.get(this, "ChartType").toInt();	}	public void setChartType(int lastParam) {		Dispatch.put(this, "ChartType", new Variant(lastParam));	}	public void applyCustomType(int lastParam) {		Dispatch.call(this, "ApplyCustomType", new Variant(lastParam));	}	public Variant getValues() {		return Dispatch.get(this, "Values");	}	public void setValues(Variant lastParam) {		Dispatch.put(this, "Values", lastParam);	}	public Variant getXValues() {		return Dispatch.get(this, "XValues");	}	public void setXValues(Variant lastParam) {		Dispatch.put(this, "XValues", lastParam);	}	public Variant getBubbleSizes() {		return Dispatch.get(this, "BubbleSizes");	}	public void setBubbleSizes(Variant lastParam) {		Dispatch.put(this, "BubbleSizes", lastParam);	}	public int getBarShape() {		return Dispatch.get(this, "BarShape").toInt();	}	public void setBarShape(int lastParam) {		Dispatch.put(this, "BarShape", new Variant(lastParam));	}	public boolean getApplyPictToSides() {		return Dispatch.get(this, "ApplyPictToSides").toBoolean();	}	public void setApplyPictToSides(boolean lastParam) {		Dispatch.put(this, "ApplyPictToSides", new Variant(lastParam));	}	public boolean getApplyPictToFront() {		return Dispatch.get(this, "ApplyPictToFront").toBoolean();	}	public void setApplyPictToFront(boolean lastParam) {		Dispatch.put(this, "ApplyPictToFront", new Variant(lastParam));	}	public boolean getApplyPictToEnd() {		return Dispatch.get(this, "ApplyPictToEnd").toBoolean();	}	public void setApplyPictToEnd(boolean lastParam) {		Dispatch.put(this, "ApplyPictToEnd", new Variant(lastParam));	}	public boolean getHas3DEffect() {		return Dispatch.get(this, "Has3DEffect").toBoolean();	}	public void setHas3DEffect(boolean lastParam) {		Dispatch.put(this, "Has3DEffect", new Variant(lastParam));	}	public boolean getShadow() {		return Dispatch.get(this, "Shadow").toBoolean();	}	public void setShadow(boolean lastParam) {		Dispatch.put(this, "Shadow", new Variant(lastParam));	}	public boolean getHasLeaderLines() {		return Dispatch.get(this, "HasLeaderLines").toBoolean();	}	public void setHasLeaderLines(boolean lastParam) {		Dispatch.put(this, "HasLeaderLines", new Variant(lastParam));	}	public LeaderLines getLeaderLines() {		return new LeaderLines(Dispatch.get(this, "LeaderLines").toDispatch());	}}

⌨️ 快捷键说明

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