threedformat.java
来自「将Excel和Word的类型库都转换过来了」· Java 代码 · 共 152 行
JAVA
152 行
/** * JacobGen generated file --- do not edit * * (http://www.bigatti.it/projects/jacobgen) */package org.nethawker.excel11;import com.jacob.com.*;public class ThreeDFormat extends Dispatch { public static final String componentName = "Excel.ThreeDFormat"; public ThreeDFormat() { 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 ThreeDFormat(Dispatch d) { // take over the IDispatch pointer m_pDispatch = d.m_pDispatch; // null out the input's pointer d.m_pDispatch = 0; } public ThreeDFormat(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 void incrementRotationX(float lastParam) { Dispatch.call(this, "IncrementRotationX", new Variant(lastParam)); } public void incrementRotationY(float lastParam) { Dispatch.call(this, "IncrementRotationY", new Variant(lastParam)); } public void resetRotation() { Dispatch.call(this, "ResetRotation"); } public void setThreeDFormat(int lastParam) { Dispatch.call(this, "SetThreeDFormat", new Variant(lastParam)); } public void setExtrusionDirection(int lastParam) { Dispatch.call(this, "SetExtrusionDirection", new Variant(lastParam)); } public float getDepth() { return Dispatch.get(this, "Depth").toFloat(); } public void setDepth(float lastParam) { Dispatch.put(this, "Depth", new Variant(lastParam)); } public org.nethawker.office11.ColorFormat getExtrusionColor() { return new org.nethawker.office11.ColorFormat(Dispatch.get(this, "ExtrusionColor").toDispatch()); } public int getExtrusionColorType() { return Dispatch.get(this, "ExtrusionColorType").toInt(); } public void setExtrusionColorType(int lastParam) { Dispatch.put(this, "ExtrusionColorType", new Variant(lastParam)); } public int getPerspective() { return Dispatch.get(this, "Perspective").toInt(); } public void setPerspective(int lastParam) { Dispatch.put(this, "Perspective", new Variant(lastParam)); } public int getPresetExtrusionDirection() { return Dispatch.get(this, "PresetExtrusionDirection").toInt(); } public int getPresetLightingDirection() { return Dispatch.get(this, "PresetLightingDirection").toInt(); } public void setPresetLightingDirection(int lastParam) { Dispatch.put(this, "PresetLightingDirection", new Variant(lastParam)); } public int getPresetLightingSoftness() { return Dispatch.get(this, "PresetLightingSoftness").toInt(); } public void setPresetLightingSoftness(int lastParam) { Dispatch.put(this, "PresetLightingSoftness", new Variant(lastParam)); } public int getPresetMaterial() { return Dispatch.get(this, "PresetMaterial").toInt(); } public void setPresetMaterial(int lastParam) { Dispatch.put(this, "PresetMaterial", new Variant(lastParam)); } public int getPresetThreeDFormat() { return Dispatch.get(this, "PresetThreeDFormat").toInt(); } public float getRotationX() { return Dispatch.get(this, "RotationX").toFloat(); } public void setRotationX(float lastParam) { Dispatch.put(this, "RotationX", new Variant(lastParam)); } public float getRotationY() { return Dispatch.get(this, "RotationY").toFloat(); } public void setRotationY(float lastParam) { Dispatch.put(this, "RotationY", new Variant(lastParam)); } public int getVisible() { return Dispatch.get(this, "Visible").toInt(); } public void setVisible(int lastParam) { Dispatch.put(this, "Visible", new Variant(lastParam)); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?