📄 frameset.java
字号:
/** * JacobGen generated file --- do not edit * * (http://www.bigatti.it/projects/jacobgen) */package org.nethawker.word11;import com.jacob.com.*;public class Frameset extends Dispatch { public static final String componentName = "Word.Frameset"; public Frameset() { 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 Frameset(Dispatch d) { // take over the IDispatch pointer m_pDispatch = d.m_pDispatch; // null out the input's pointer d.m_pDispatch = 0; } public Frameset(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 Variant get_NewEnum() { return Dispatch.get(this, "_NewEnum"); } public Frameset getParentFrameset() { return new Frameset(Dispatch.get(this, "ParentFrameset").toDispatch()); } public int getType() { return Dispatch.get(this, "Type").toInt(); } public int getWidthType() { return Dispatch.get(this, "WidthType").toInt(); } public void setWidthType(int lastParam) { Dispatch.put(this, "WidthType", new Variant(lastParam)); } public int getHeightType() { return Dispatch.get(this, "HeightType").toInt(); } public void setHeightType(int lastParam) { Dispatch.put(this, "HeightType", new Variant(lastParam)); } public int getWidth() { return Dispatch.get(this, "Width").toInt(); } public void setWidth(int lastParam) { Dispatch.put(this, "Width", new Variant(lastParam)); } public int getHeight() { return Dispatch.get(this, "Height").toInt(); } public void setHeight(int lastParam) { Dispatch.put(this, "Height", new Variant(lastParam)); } public int getChildFramesetCount() { return Dispatch.get(this, "ChildFramesetCount").toInt(); } public Frameset getChildFramesetItem(int lastParam) { return new Frameset(Dispatch.call(this, "ChildFramesetItem", new Variant(lastParam)).toDispatch()); } public float getFramesetBorderWidth() { return Dispatch.get(this, "FramesetBorderWidth").toFloat(); } public void setFramesetBorderWidth(float lastParam) { Dispatch.put(this, "FramesetBorderWidth", new Variant(lastParam)); } public int getFramesetBorderColor() { return Dispatch.get(this, "FramesetBorderColor").toInt(); } public void setFramesetBorderColor(int lastParam) { Dispatch.put(this, "FramesetBorderColor", new Variant(lastParam)); } public int getFrameScrollbarType() { return Dispatch.get(this, "FrameScrollbarType").toInt(); } public void setFrameScrollbarType(int lastParam) { Dispatch.put(this, "FrameScrollbarType", new Variant(lastParam)); } public boolean getFrameResizable() { return Dispatch.get(this, "FrameResizable").toBoolean(); } public void setFrameResizable(boolean lastParam) { Dispatch.put(this, "FrameResizable", new Variant(lastParam)); } public String getFrameName() { return Dispatch.get(this, "FrameName").toString(); } public void setFrameName(String lastParam) { Dispatch.put(this, "FrameName", lastParam); } public boolean getFrameDisplayBorders() { return Dispatch.get(this, "FrameDisplayBorders").toBoolean(); } public void setFrameDisplayBorders(boolean lastParam) { Dispatch.put(this, "FrameDisplayBorders", new Variant(lastParam)); } public String getFrameDefaultURL() { return Dispatch.get(this, "FrameDefaultURL").toString(); } public void setFrameDefaultURL(String lastParam) { Dispatch.put(this, "FrameDefaultURL", lastParam); } public boolean getFrameLinkToFile() { return Dispatch.get(this, "FrameLinkToFile").toBoolean(); } public void setFrameLinkToFile(boolean lastParam) { Dispatch.put(this, "FrameLinkToFile", new Variant(lastParam)); } public Frameset addNewFrame(int lastParam) { return new Frameset(Dispatch.call(this, "AddNewFrame", new Variant(lastParam)).toDispatch()); } public void delete() { Dispatch.call(this, "Delete"); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -