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

📄 view.java

📁 将Excel和Word的类型库都转换过来了
💻 JAVA
字号:
/** * JacobGen generated file --- do not edit * * (http://www.bigatti.it/projects/jacobgen) */package org.nethawker.word11;import com.jacob.com.*;public class View extends Dispatch {	public static final String componentName = "Word.View";	public View() {		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 View(Dispatch d) {		// take over the IDispatch pointer		m_pDispatch = d.m_pDispatch;		// null out the input's pointer		d.m_pDispatch = 0;	}	public View(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 int getType() {		return Dispatch.get(this, "Type").toInt();	}	public void setType(int lastParam) {		Dispatch.put(this, "Type", new Variant(lastParam));	}	public boolean getFullScreen() {		return Dispatch.get(this, "FullScreen").toBoolean();	}	public void setFullScreen(boolean lastParam) {		Dispatch.put(this, "FullScreen", new Variant(lastParam));	}	public boolean getDraft() {		return Dispatch.get(this, "Draft").toBoolean();	}	public void setDraft(boolean lastParam) {		Dispatch.put(this, "Draft", new Variant(lastParam));	}	public boolean getShowAll() {		return Dispatch.get(this, "ShowAll").toBoolean();	}	public void setShowAll(boolean lastParam) {		Dispatch.put(this, "ShowAll", new Variant(lastParam));	}	public boolean getShowFieldCodes() {		return Dispatch.get(this, "ShowFieldCodes").toBoolean();	}	public void setShowFieldCodes(boolean lastParam) {		Dispatch.put(this, "ShowFieldCodes", new Variant(lastParam));	}	public boolean getMailMergeDataView() {		return Dispatch.get(this, "MailMergeDataView").toBoolean();	}	public void setMailMergeDataView(boolean lastParam) {		Dispatch.put(this, "MailMergeDataView", new Variant(lastParam));	}	public boolean getMagnifier() {		return Dispatch.get(this, "Magnifier").toBoolean();	}	public void setMagnifier(boolean lastParam) {		Dispatch.put(this, "Magnifier", new Variant(lastParam));	}	public boolean getShowFirstLineOnly() {		return Dispatch.get(this, "ShowFirstLineOnly").toBoolean();	}	public void setShowFirstLineOnly(boolean lastParam) {		Dispatch.put(this, "ShowFirstLineOnly", new Variant(lastParam));	}	public boolean getShowFormat() {		return Dispatch.get(this, "ShowFormat").toBoolean();	}	public void setShowFormat(boolean lastParam) {		Dispatch.put(this, "ShowFormat", new Variant(lastParam));	}	public Zoom getZoom() {		return new Zoom(Dispatch.get(this, "Zoom").toDispatch());	}	public boolean getShowObjectAnchors() {		return Dispatch.get(this, "ShowObjectAnchors").toBoolean();	}	public void setShowObjectAnchors(boolean lastParam) {		Dispatch.put(this, "ShowObjectAnchors", new Variant(lastParam));	}	public boolean getShowTextBoundaries() {		return Dispatch.get(this, "ShowTextBoundaries").toBoolean();	}	public void setShowTextBoundaries(boolean lastParam) {		Dispatch.put(this, "ShowTextBoundaries", new Variant(lastParam));	}	public boolean getShowHighlight() {		return Dispatch.get(this, "ShowHighlight").toBoolean();	}	public void setShowHighlight(boolean lastParam) {		Dispatch.put(this, "ShowHighlight", new Variant(lastParam));	}	public boolean getShowDrawings() {		return Dispatch.get(this, "ShowDrawings").toBoolean();	}	public void setShowDrawings(boolean lastParam) {		Dispatch.put(this, "ShowDrawings", new Variant(lastParam));	}	public boolean getShowTabs() {		return Dispatch.get(this, "ShowTabs").toBoolean();	}	public void setShowTabs(boolean lastParam) {		Dispatch.put(this, "ShowTabs", new Variant(lastParam));	}	public boolean getShowSpaces() {		return Dispatch.get(this, "ShowSpaces").toBoolean();	}	public void setShowSpaces(boolean lastParam) {		Dispatch.put(this, "ShowSpaces", new Variant(lastParam));	}	public boolean getShowParagraphs() {		return Dispatch.get(this, "ShowParagraphs").toBoolean();	}	public void setShowParagraphs(boolean lastParam) {		Dispatch.put(this, "ShowParagraphs", new Variant(lastParam));	}	public boolean getShowHyphens() {		return Dispatch.get(this, "ShowHyphens").toBoolean();	}	public void setShowHyphens(boolean lastParam) {		Dispatch.put(this, "ShowHyphens", new Variant(lastParam));	}	public boolean getShowHiddenText() {		return Dispatch.get(this, "ShowHiddenText").toBoolean();	}	public void setShowHiddenText(boolean lastParam) {		Dispatch.put(this, "ShowHiddenText", new Variant(lastParam));	}	public boolean getWrapToWindow() {		return Dispatch.get(this, "WrapToWindow").toBoolean();	}	public void setWrapToWindow(boolean lastParam) {		Dispatch.put(this, "WrapToWindow", new Variant(lastParam));	}	public boolean getShowPicturePlaceHolders() {		return Dispatch.get(this, "ShowPicturePlaceHolders").toBoolean();	}	public void setShowPicturePlaceHolders(boolean lastParam) {		Dispatch.put(this, "ShowPicturePlaceHolders", new Variant(lastParam));	}	public boolean getShowBookmarks() {		return Dispatch.get(this, "ShowBookmarks").toBoolean();	}	public void setShowBookmarks(boolean lastParam) {		Dispatch.put(this, "ShowBookmarks", new Variant(lastParam));	}	public int getFieldShading() {		return Dispatch.get(this, "FieldShading").toInt();	}	public void setFieldShading(int lastParam) {		Dispatch.put(this, "FieldShading", new Variant(lastParam));	}	public boolean getShowAnimation() {		return Dispatch.get(this, "ShowAnimation").toBoolean();	}	public void setShowAnimation(boolean lastParam) {		Dispatch.put(this, "ShowAnimation", new Variant(lastParam));	}	public boolean getTableGridlines() {		return Dispatch.get(this, "TableGridlines").toBoolean();	}	public void setTableGridlines(boolean lastParam) {		Dispatch.put(this, "TableGridlines", new Variant(lastParam));	}	public int getEnlargeFontsLessThan() {		return Dispatch.get(this, "EnlargeFontsLessThan").toInt();	}	public void setEnlargeFontsLessThan(int lastParam) {		Dispatch.put(this, "EnlargeFontsLessThan", new Variant(lastParam));	}	public boolean getShowMainTextLayer() {		return Dispatch.get(this, "ShowMainTextLayer").toBoolean();	}	public void setShowMainTextLayer(boolean lastParam) {		Dispatch.put(this, "ShowMainTextLayer", new Variant(lastParam));	}	public int getSeekView() {		return Dispatch.get(this, "SeekView").toInt();	}	public void setSeekView(int lastParam) {		Dispatch.put(this, "SeekView", new Variant(lastParam));	}	public int getSplitSpecial() {		return Dispatch.get(this, "SplitSpecial").toInt();	}	public void setSplitSpecial(int lastParam) {		Dispatch.put(this, "SplitSpecial", new Variant(lastParam));	}	public int getBrowseToWindow() {		return Dispatch.get(this, "BrowseToWindow").toInt();	}	public void setBrowseToWindow(int lastParam) {		Dispatch.put(this, "BrowseToWindow", new Variant(lastParam));	}	public boolean getShowOptionalBreaks() {		return Dispatch.get(this, "ShowOptionalBreaks").toBoolean();	}	public void setShowOptionalBreaks(boolean lastParam) {		Dispatch.put(this, "ShowOptionalBreaks", new Variant(lastParam));	}	public void collapseOutline(Variant lastParam) {		Dispatch.call(this, "CollapseOutline", lastParam);	}	public void collapseOutline() {		Dispatch.call(this, "CollapseOutline");	}	public void expandOutline(Variant lastParam) {		Dispatch.call(this, "ExpandOutline", lastParam);	}	public void expandOutline() {		Dispatch.call(this, "ExpandOutline");	}	public void showAllHeadings() {		Dispatch.call(this, "ShowAllHeadings");	}	public void showHeading(int lastParam) {		Dispatch.call(this, "ShowHeading", new Variant(lastParam));	}	public void previousHeaderFooter() {		Dispatch.call(this, "PreviousHeaderFooter");	}	public void nextHeaderFooter() {		Dispatch.call(this, "NextHeaderFooter");	}	public boolean getDisplayPageBoundaries() {		return Dispatch.get(this, "DisplayPageBoundaries").toBoolean();	}	public void setDisplayPageBoundaries(boolean lastParam) {		Dispatch.put(this, "DisplayPageBoundaries", new Variant(lastParam));	}	public boolean getDisplaySmartTags() {		return Dispatch.get(this, "DisplaySmartTags").toBoolean();	}	public void setDisplaySmartTags(boolean lastParam) {		Dispatch.put(this, "DisplaySmartTags", new Variant(lastParam));	}	public boolean getShowRevisionsAndComments() {		return Dispatch.get(this, "ShowRevisionsAndComments").toBoolean();	}	public void setShowRevisionsAndComments(boolean lastParam) {		Dispatch.put(this, "ShowRevisionsAndComments", new Variant(lastParam));	}	public boolean getShowComments() {		return Dispatch.get(this, "ShowComments").toBoolean();	}	public void setShowComments(boolean lastParam) {		Dispatch.put(this, "ShowComments", new Variant(lastParam));	}	public boolean getShowInsertionsAndDeletions() {		return Dispatch.get(this, "ShowInsertionsAndDeletions").toBoolean();	}	public void setShowInsertionsAndDeletions(boolean lastParam) {		Dispatch.put(this, "ShowInsertionsAndDeletions", new Variant(lastParam));	}	public boolean getShowFormatChanges() {		return Dispatch.get(this, "ShowFormatChanges").toBoolean();	}	public void setShowFormatChanges(boolean lastParam) {		Dispatch.put(this, "ShowFormatChanges", new Variant(lastParam));	}	public int getRevisionsView() {		return Dispatch.get(this, "RevisionsView").toInt();	}	public void setRevisionsView(int lastParam) {		Dispatch.put(this, "RevisionsView", new Variant(lastParam));	}	public int getRevisionsMode() {		return Dispatch.get(this, "RevisionsMode").toInt();	}	public void setRevisionsMode(int lastParam) {		Dispatch.put(this, "RevisionsMode", new Variant(lastParam));	}	public float getRevisionsBalloonWidth() {		return Dispatch.get(this, "RevisionsBalloonWidth").toFloat();	}	public void setRevisionsBalloonWidth(float lastParam) {		Dispatch.put(this, "RevisionsBalloonWidth", new Variant(lastParam));	}	public int getRevisionsBalloonWidthType() {		return Dispatch.get(this, "RevisionsBalloonWidthType").toInt();	}	public void setRevisionsBalloonWidthType(int lastParam) {		Dispatch.put(this, "RevisionsBalloonWidthType", new Variant(lastParam));	}	public int getRevisionsBalloonSide() {		return Dispatch.get(this, "RevisionsBalloonSide").toInt();	}	public void setRevisionsBalloonSide(int lastParam) {		Dispatch.put(this, "RevisionsBalloonSide", new Variant(lastParam));	}	public Reviewers getReviewers() {		return new Reviewers(Dispatch.get(this, "Reviewers").toDispatch());	}	public boolean getRevisionsBalloonShowConnectingLines() {		return Dispatch.get(this, "RevisionsBalloonShowConnectingLines").toBoolean();	}	public void setRevisionsBalloonShowConnectingLines(boolean lastParam) {		Dispatch.put(this, "RevisionsBalloonShowConnectingLines", new Variant(lastParam));	}	public boolean getReadingLayout() {		return Dispatch.get(this, "ReadingLayout").toBoolean();	}	public void setReadingLayout(boolean lastParam) {		Dispatch.put(this, "ReadingLayout", new Variant(lastParam));	}	public int getShowXMLMarkup() {		return Dispatch.get(this, "ShowXMLMarkup").toInt();	}	public void setShowXMLMarkup(int lastParam) {		Dispatch.put(this, "ShowXMLMarkup", new Variant(lastParam));	}	public int getShadeEditableRanges() {		return Dispatch.get(this, "ShadeEditableRanges").toInt();	}	public void setShadeEditableRanges(int lastParam) {		Dispatch.put(this, "ShadeEditableRanges", new Variant(lastParam));	}	public boolean getShowInkAnnotations() {		return Dispatch.get(this, "ShowInkAnnotations").toBoolean();	}	public void setShowInkAnnotations(boolean lastParam) {		Dispatch.put(this, "ShowInkAnnotations", new Variant(lastParam));	}	public boolean getDisplayBackgrounds() {		return Dispatch.get(this, "DisplayBackgrounds").toBoolean();	}	public void setDisplayBackgrounds(boolean lastParam) {		Dispatch.put(this, "DisplayBackgrounds", new Variant(lastParam));	}	public boolean getReadingLayoutActualView() {		return Dispatch.get(this, "ReadingLayoutActualView").toBoolean();	}	public void setReadingLayoutActualView(boolean lastParam) {		Dispatch.put(this, "ReadingLayoutActualView", new Variant(lastParam));	}	public boolean getReadingLayoutAllowMultiplePages() {		return Dispatch.get(this, "ReadingLayoutAllowMultiplePages").toBoolean();	}	public void setReadingLayoutAllowMultiplePages(boolean lastParam) {		Dispatch.put(this, "ReadingLayoutAllowMultiplePages", new Variant(lastParam));	}}

⌨️ 快捷键说明

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