xmlschemareferences.java
来自「将Excel和Word的类型库都转换过来了」· Java 代码 · 共 124 行
JAVA
124 行
/** * JacobGen generated file --- do not edit * * (http://www.bigatti.it/projects/jacobgen) */package org.nethawker.word11;import com.jacob.com.*;public class XMLSchemaReferences extends Dispatch { public static final String componentName = "Word.XMLSchemaReferences"; public XMLSchemaReferences() { 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 XMLSchemaReferences(Dispatch d) { // take over the IDispatch pointer m_pDispatch = d.m_pDispatch; // null out the input's pointer d.m_pDispatch = 0; } public XMLSchemaReferences(String compName) { super(compName); } public Variant get_NewEnum() { return Dispatch.get(this, "_NewEnum"); } public int getCount() { return Dispatch.get(this, "Count").toInt(); } 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 boolean getAutomaticValidation() { return Dispatch.get(this, "AutomaticValidation").toBoolean(); } public void setAutomaticValidation(boolean lastParam) { Dispatch.put(this, "AutomaticValidation", new Variant(lastParam)); } public boolean getAllowSaveAsXMLWithoutValidation() { return Dispatch.get(this, "AllowSaveAsXMLWithoutValidation").toBoolean(); } public void setAllowSaveAsXMLWithoutValidation(boolean lastParam) { Dispatch.put(this, "AllowSaveAsXMLWithoutValidation", new Variant(lastParam)); } public boolean getHideValidationErrors() { return Dispatch.get(this, "HideValidationErrors").toBoolean(); } public void setHideValidationErrors(boolean lastParam) { Dispatch.put(this, "HideValidationErrors", new Variant(lastParam)); } public boolean getIgnoreMixedContent() { return Dispatch.get(this, "IgnoreMixedContent").toBoolean(); } public void setIgnoreMixedContent(boolean lastParam) { Dispatch.put(this, "IgnoreMixedContent", new Variant(lastParam)); } public boolean getShowPlaceholderText() { return Dispatch.get(this, "ShowPlaceholderText").toBoolean(); } public void setShowPlaceholderText(boolean lastParam) { Dispatch.put(this, "ShowPlaceholderText", new Variant(lastParam)); } public XMLSchemaReference item(Variant lastParam) { return new XMLSchemaReference(Dispatch.call(this, "Item", lastParam).toDispatch()); } public void validate() { Dispatch.call(this, "Validate"); } public XMLSchemaReference add(Variant namespaceURI, Variant alias, Variant fileName, boolean lastParam) { return new XMLSchemaReference(Dispatch.call(this, "Add", namespaceURI, alias, fileName, new Variant(lastParam)).toDispatch()); } public XMLSchemaReference add(Variant namespaceURI, Variant alias, Variant fileName) { return new XMLSchemaReference(Dispatch.call(this, "Add", namespaceURI, alias, fileName).toDispatch()); } public XMLSchemaReference add(Variant namespaceURI, Variant alias) { return new XMLSchemaReference(Dispatch.call(this, "Add", namespaceURI, alias).toDispatch()); } public XMLSchemaReference add(Variant namespaceURI) { return new XMLSchemaReference(Dispatch.call(this, "Add", namespaceURI).toDispatch()); } public XMLSchemaReference add() { return new XMLSchemaReference(Dispatch.call(this, "Add").toDispatch()); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?