<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE dictionary SYSTEM "file://localhost/System/Library/DTDs/sdef.dtd">
<dictionary xmlns:xi="http://www.w3.org/2003/XInclude">
	<!-- We override some standard commands to add several optional properties. -->
	<suite name="Standard Suite" code="????" description="Common classes and commands for all applications.">
		<xi:include href="file://localhost/System/Library/ScriptingDefinitions/CocoaStandard.sdef" xpointer="xpointer(/dictionary/suite/node()[not((self::class and (@name = 'window')))])"/>
		<class name="window" code="cwin" description="A window.">
			<cocoa class="NSWindow"/>
			<property name="name" code="pnam" type="text" access="r" description="The title of the window.">
				<cocoa key="title"/>
			</property>
			<property name="id" code="ID  " type="integer" access="r" description="The unique identifier of the window.">
				<cocoa key="uniqueID"/>
			</property>
			<property name="index" code="pidx" type="integer" description="The index of the window, ordered front to back.">
				<cocoa key="orderedIndex"/>
			</property>
			<property name="bounds" code="pbnd" type="rectangle" description="The bounding rectangle of the window.">
				<cocoa key="boundsAsQDRect"/>
			</property>
			<property name="closeable" code="hclb" type="boolean" access="r" description="Does the window have a close button?">
				<cocoa key="hasCloseBox"/>
			</property>
			<property name="miniaturizable" code="ismn" type="boolean" access="r" description="Does the window have a minimize button?">
				<cocoa key="isMiniaturizable"/>
			</property>
			<property name="miniaturized" code="pmnd" type="boolean" description="Is the window minimized right now?">
				<cocoa key="isMiniaturized"/>
			</property>
			<property name="resizable" code="prsz" type="boolean" access="r" description="Can the window be resized?">
				<cocoa key="isResizable"/>
			</property>
			<property name="visible" code="pvis" type="boolean" description="Is the window visible right now?">
				<cocoa key="isVisible"/>
			</property>
			<property name="zoomable" code="iszm" type="boolean" access="r" description="Does the window have a zoom button?">
				<cocoa key="isZoomable"/>
			</property>
			<property name="zoomed" code="pzum" type="boolean" description="Is the window zoomed right now?">
				<cocoa key="isZoomed"/>
			</property>
			<property name="document" code="docu" type="document" access="r" description="The document whose contents are displayed in the window."/>
			<responds-to command="close">
				<cocoa method="handleCloseScriptCommand:"/>
			</responds-to>
			<responds-to command="print">
				<cocoa method="handlePrintScriptCommand:"/>
			</responds-to>
			<responds-to command="save">
				<cocoa method="handleSaveScriptCommand:"/>
			</responds-to>
			<property name="entry index" code="pidx" type="integer" access="r" description="the number of the window"/>
			<property name="position" code="posn" type="point" description="upper left coordinates of the window"/>
			<property name="titled" code="ptit" type="boolean" access="r" description="Does the window have a title bar?"/>
			<property name="floating" code="isfl" type="boolean" access="r" description="Does the window float?"/>
			<property name="modal" code="pmod" type="boolean" access="r" description="Is the window modal?"/>
			<property name="collapsable" code="iscp" type="boolean" access="r" description="Is the window collapasable?"/>
			<property name="collapsed" code="wshd" type="boolean" description="Is the window collapsed?"/>
			<property name="sheet" code="issh" type="boolean" access="r" description="Is this window a sheet window?"/>
		</class>
	</suite>
	<suite name="Microsoft Office Suite" code="sMSO" description="Common classes and commands used throughout all Office applications">
		<command name="add item to combobox" code="sMSOZAIB" description="Add a new string to a custom combobox control.">
			<direct-parameter type="command bar combobox"/>
			<parameter name="combobox item" code="Z001" type="text" description="The string value to be added."/>
			<parameter name="entry_index" code="MSix" type="integer" optional="yes" description="The index where the string is to be added."/>
		</command>
		<command name="clear combobox" code="sMSOZCCB" description="Clear all of the strings form a custom combobox.">
			<direct-parameter type="command bar combobox"/>
		</command>
		<command name="execute" code="sMSOmEXC" description="Runs the procedure or built-in command assigned to the specified command bar control.">
			<direct-parameter type="command bar control"/>
		</command>
		<command name="get combobox item" code="sMSOZGCI" description="Return the string at the given index within a combobox.">
			<direct-parameter type="command bar combobox"/>
			<parameter name="entry_index" code="MSix" type="integer" description="The index in the combobox where the string to be retrieved is located."/>
			<result type="text" description="The string associated with the referenced combobox item."/>
		</command>
		<command name="get count of combobox items" code="sMSOZCCi" description="Return the number of strings within a combobox.">
			<direct-parameter type="command bar combobox"/>
			<result type="integer" description="The number of strings in the combobox."/>
		</command>
		<command name="remove an item from combobox" code="sMSOZRCI" description="Remove a string from a custom combobox.">
			<direct-parameter type="command bar combobox"/>
			<parameter name="entry_index" code="MSix" type="integer" description="The index in the combobox where the string to be removed is located."/>
		</command>
		<command name="reset" code="sMSOmFBr" description="Resets a built-in command bar or command bar control to its default configuration.">
			<direct-parameter type="4000"/>
		</command>
		<command name="set combobox item" code="sMSOZSCI" description="Set the string an a given index for a custom combobox.">
			<direct-parameter type="command bar combobox"/>
			<parameter name="entry_index" code="MSix" type="integer" description="The index where the string is to be set."/>
			<parameter name="combobox item" code="Z001" type="text" description="The string value to be set."/>
		</command>
		<class name="command bar button" code="mCBB" description="A button control within a command bar." inherits="command bar control" plural="command bar buttons">
			<property name="button face is default" code="BTBi" type="boolean" access="r" description="Returns if the face of a command bar button control is the original built-in face."/>
			<property name="button state" code="BTST" type="MsoButtonState" description="Returns or set the appearance of a command bar button control.  The property is read-only for built-in command bar buttons."/>
			<property name="button style" code="BTSy" type="MsoButtonStyle" description="Returns or sets the way a command button control is displayed."/>
			<property name="face id" code="BTFi" type="integer" description="Returns or sets the Id number for the face of the command bar button control."/>
		</class>
		<class name="command bar combobox" code="mCBX" description="A combobox menu control within a command bar." inherits="command bar control" plural="command bar comboboxes">
			<property name="combobox style" code="CBSy" type="MsoComboStyle" description="Returns or sets the way a command bar combobox control is displayed."/>
			<property name="combobox text" code="CBtX" type="text" description="Returns or sets the text in the display or edit portion of the command bar combobox control."/>
			<property name="drop down lines" code="CBdd" type="integer" description="Returns or sets the number of lines in a command bar control combobox control.  The combobox control must be a custom control."/>
			<property name="drop down width" code="CBdw" type="integer" description="Returns or sets the width in pixels of the list for the specified command bar combobox control.  An error occurs if you attempt to set this property for a built-in combobox control."/>
			<property name="list index" code="CBlI" type="integer"/>
		</class>
		<class name="command bar control" code="mCBC" description="A control within a command bar." plural="command bar controls">
			<property name="begin group" code="BCbg" type="boolean" description="Returns or sets if the command bar control appears at the beginning of a group of controls on the command bar."/>
			<property name="built in" code="pBtN" type="boolean" access="r" description="Returns true if the command bar control is a built-in command bar control."/>
			<property name="control type" code="cBcT" type="MsoControlType" access="r" description="Returns the type of the command bar control."/>
			<property name="description text" code="BCDt" type="text" description="Returns or sets the description for a command bar control.  The description is not displayed to the user, but it can be useful for documenting the behavior of a control."/>
			<property name="enabled" code="enbl" type="boolean" description="Returns or sets if the command bar control is enabled."/>
			<property name="entry_index" code="MSix" type="integer" access="r" description="Returns the index number for this command bar control."/>
			<property name="height" code="hght" type="integer" description="Returns or sets the height of a command bar control."/>
			<property name="help context ID" code="BCHi" type="integer" description="Returns or sets the help context ID number for the Help topic attached to the command bar control."/>
			<property name="help file" code="BCHf" type="text" description="Returns or sets the file name for the help topic attached to the command bar.  To use this property, you must also set the help context ID property."/>
			<property name="id" code="BCId" type="integer" access="r" description="Returns the id for a built-in command bar control."/>
			<property name="left position" code="plft" type="integer" access="r" description="Returns the left position of the command bar control."/>
			<property name="name" code="pnam" type="text" description="Returns or sets the caption text for a command bar control."/>
			<property name="parameter" code="BCPa" type="text" description="Returns or sets a string that is used to execute a command."/>
			<property name="priority" code="BCPr" type="integer" description="Returns or sets the priority of a command bar control. A controls priority determines whether the control can be dropped from a docked command bar if the command bar controls can not fit in a single row.  Valid priority number are 0 through 7."/>
			<property name="tag" code="BCTg" type="text" description="Returns or sets information about the command bar control, such as data that can be used as an argument in procedures, or information that identifies the control."/>
			<property name="tooltip text" code="BCTt" type="text" description="Returns or sets the text displayed in a command bar controls tooltip."/>
			<property name="top" code="ptop" type="integer" access="r" description="Returns the top position of a command bar control."/>
			<property name="visible" code="pvis" type="boolean" description="Returns or sets if the command bar control is visible."/>
			<property name="width" code="pwid" type="integer" description="Returns or sets the width in pixels of the command bar control."/>
		</class>
		<class name="command bar popup" code="mCBP" description="A popup menu control within a command bar." inherits="command bar control" plural="command bar popups">
			<element type="command bar control"/>
		</class>
		<class name="command bar" code="msCB" description="Toolbars used in all of the Office applications." plural="command bars">
			<element type="command bar control"/>
			<property name="bar position" code="bPos" type="MsoBarPosition" description="Returns or sets the position of the command bar."/>
			<property name="bar type" code="bTyp" type="MsoBarType" access="r" description="Returns the type of this command bar."/>
			<property name="built in" code="pBtN" type="boolean" access="r" description="True if the command bar is built-in."/>
			<property name="context" code="CbCT" type="text" access="r" description="Returns or sets a string that determines where a command bar will be saved."/>
			<property name="enabled" code="enbl" type="boolean" description="Returns or set if the command bar is enabled."/>
			<property name="entry_index" code="MSix" type="integer" access="r" description="The index of the command bar."/>
			<property name="height" code="hght" type="integer" description="Returns or sets the height of the command bar."/>
			<property name="left position" code="plft" type="integer" description="Returns or sets the left position of the command bar."/>
			<property name="local name" code="CbNL" type="text" description="Returns or sets the name of the command bar in the localized language of the application.  An error is returned when trying to set the local name of a built-in command bar."/>
			<property name="name" code="pnam" type="text" description="Returns or sets the name of the command bar."/>
			<property name="protection" code="CBPt" description="Returns or sets the way a command bar is protected from user customization.  It accepts a list of the following items: no protection, no customize, no resize, no move, no change visible, no change dock, no vertical dock, no horizontal dock.">
				<type type="MsoBarProtection" list="yes"/>
			</property>
			<property name="row index" code="CBRi" type="integer" description="Returns or sets the docking order of a command bar in relation to other command bars in the same docking area.  Can be an integer greater than zero."/>
			<property name="top" code="ptop" type="integer" description="Returns or sets the top position of a command bar."/>
			<property name="visible" code="pvis" type="boolean" description="Returns or sets if the command bar is visible."/>
			<property name="width" code="pwid" type="integer" description="Returns or sets the width in pixels of the command bar."/>
		</class>
		<class name="custom document property" code="mCDP" inherits="document property" plural="custom document properties"/>
		<class name="document property" code="mDPr" plural="document properties">
			<property name="document property type" code="mDty" type="type" description="Returns or sets the document property type."/>
			<property name="link source" code="DPLs" type="text" description="Returns or sets the source of a lined custom document property."/>
			<property name="link to content" code="DPLc" type="boolean" description="True if the value of the document property is lined to the content of the container document.  False if the value is static.  This only applies to custom document properties.  For built-in properties this is always false."/>
			<property name="name" code="pnam" type="text" description="Returns or sets the name of the document property."/>
			<property name="value" code="DPVu" type="text" description="Returns or sets the value of the document property."/>
		</class>
		<class name="web page font" code="mWPF">
			<property name="fixed width font" code="WFfw" type="text" description="Returns or sets the fixed-width font setting."/>
			<property name="fixed width font size" code="WFfs" type="real" description="Returns or sets the fixed-width font size.  You can enter half-point sizes; if you enter other fractional point sizes, they are rounded up or down to the nearest half-point."/>
			<property name="proportional font" code="WFpf" type="text" description="Returns or sets the proportional font setting."/>
			<property name="proportional font size" code="WFps" type="real" description="Returns or sets the proportional font size.  You can enter half-point sizes; if you enter other fractional point sizes, they are rounded up or down to the nearest half-point."/>
		</class>
		<enumeration name="MsoLineDashStyle" code="mlDs">
			<enumerator name="line dash style unset" code="0x0092fffe"/>
			<enumerator name="line dash style solid" code="0x00930001"/>
			<enumerator name="line dash style square dot" code="0x00930002"/>
			<enumerator name="line dash style round dot" code="0x00930003"/>
			<enumerator name="line dash style dash" code="0x00930004"/>
			<enumerator name="line dash style dash dot" code="0x00930005"/>
			<enumerator name="line dash style dash dot dot" code="0x00930006"/>
			<enumerator name="line dash style long dash" code="0x00930007"/>
			<enumerator name="line dash style long dash dot" code="0x00930008"/>
			<enumerator name="line dash style long dash dot dot" code="0x00930009"/>
			<enumerator name="line dash style system dash" code="0x0093000a"/>
			<enumerator name="line dash style system dot" code="0x0093000b"/>
			<enumerator name="line dash style system dash dot" code="0x0093000c"/>
		</enumeration>
		<enumeration name="MsoLineStyle" code="mLnS">
			<enumerator name="line style unset" code="0x0094fffe"/>
			<enumerator name="single line" code="0x00950001"/>
			<enumerator name="thin thin line" code="0x00950002"/>
			<enumerator name="thin thick line" code="0x00950003"/>
			<enumerator name="thick thin line" code="0x00950004"/>
			<enumerator name="thick between thin line" code="0x00950005"/>
		</enumeration>
		<enumeration name="MsoArrowheadStyle" code="mAhS">
			<enumerator name="arrowhead style unset" code="0x0091fffe"/>
			<enumerator name="no arrowhead" code="0x00920001"/>
			<enumerator name="triangle arrowhead" code="0x00920002"/>
			<enumerator name="open_arrowhead" code="0x00920003"/>
			<enumerator name="stealth arrowhead" code="0x00920004"/>
			<enumerator name="diamond arrowhead" code="0x00920005"/>
			<enumerator name="oval arrowhead" code="0x00920006"/>
		</enumeration>
		<enumeration name="MsoArrowheadWidth" code="mAhW">
			<enumerator name="arrowhead width unset" code="0x0090fffe"/>
			<enumerator name="narrow width arrowhead" code="0x00910001"/>
			<enumerator name="medium width arrowhead" code="0x00910002"/>
			<enumerator name="wide arrowhead" code="0x00910003"/>
		</enumeration>
		<enumeration name="MsoArrowheadLength" code="mAhL">
			<enumerator name="arrowhead length unset" code="0x0093fffe"/>
			<enumerator name="short arrowhead" code="0x00940001"/>
			<enumerator name="medium arrowhead" code="0x00940002"/>
			<enumerator name="long arrowhead" code="0x00940003"/>
		</enumeration>
		<enumeration name="MsoFillType" code="mFdT">
			<enumerator name="fill unset" code="0x0063fffe"/>
			<enumerator name="fill solid" code="0x00640001"/>
			<enumerator name="fill patterned" code="0x00640002"/>
			<enumerator name="fill gradient" code="0x00640003"/>
			<enumerator name="fill textured" code="0x00640004"/>
			<enumerator name="fill background" code="0x00640005"/>
			<enumerator name="fill picture" code="0x00640006"/>
		</enumeration>
		<enumeration name="MsoGradientStyle" code="mGdS">
			<enumerator name="gradient unset" code="0x0064fffe"/>
			<enumerator name="horizontal gradient" code="0x00650001"/>
			<enumerator name="vertical gradient" code="0x00650002"/>
			<enumerator name="diagonal up gradient" code="0x00650003"/>
			<enumerator name="diagonal down gradient" code="0x00650004"/>
			<enumerator name="from corner gradient" code="0x00650005"/>
			<enumerator name="from title gradient" code="0x00650006"/>
			<enumerator name="from center gradient" code="0x00650007"/>
		</enumeration>
		<enumeration name="MsoGradientColorType" code="mGCt">
			<enumerator name="gradient type unset" code="0x03effffe"/>
			<enumerator name="single shade gradient type" code="0x03f00001"/>
			<enumerator name="two colors gradient type" code="0x03f00002"/>
			<enumerator name="preset colors gradient type" code="0x03f00003"/>
			<enumerator name="multi colors gradient type" code="0x03f00004"/>
		</enumeration>
		<enumeration name="MsoTextureType" code="mxtT">
			<enumerator name="texture type texture type unset" code="0x03f0fffe"/>
			<enumerator name="texture type preset texture" code="0x03f10001"/>
			<enumerator name="texture type user defined texture" code="0x03f10002"/>
		</enumeration>
		<enumeration name="MsoPresetTexture" code="mPzT">
			<enumerator name="preset texture unset" code="0x0065fffe"/>
			<enumerator name="texture papyrus" code="0x00660001"/>
			<enumerator name="texture canvas" code="0x00660002"/>
			<enumerator name="texture denim" code="0x00660003"/>
			<enumerator name="texture woven mat" code="0x00660004"/>
			<enumerator name="texture water droplets" code="0x00660005"/>
			<enumerator name="texture paper bag" code="0x00660006"/>
			<enumerator name="texture fish fossil" code="0x00660007"/>
			<enumerator name="texture sand" code="0x00660008"/>
			<enumerator name="texture green marble" code="0x00660009"/>
			<enumerator name="texture white marble" code="0x0066000a"/>
			<enumerator name="texture brown marble" code="0x0066000b"/>
			<enumerator name="texture granite" code="0x0066000c"/>
			<enumerator name="texture newsprint" code="0x0066000d"/>
			<enumerator name="texture recycled paper" code="0x0066000e"/>
			<enumerator name="texture parchment" code="0x0066000f"/>
			<enumerator name="texture stationery" code="0x00660010"/>
			<enumerator name="texture blue tissue paper" code="0x00660011"/>
			<enumerator name="texture pink tissue paper" code="0x00660012"/>
			<enumerator name="texture purple mesh" code="0x00660013"/>
			<enumerator name="texture bouquet" code="0x00660014"/>
			<enumerator name="texture cork" code="0x00660015"/>
			<enumerator name="texture walnut" code="0x00660016"/>
			<enumerator name="texture oak" code="0x00660017"/>
			<enumerator name="texture medium wood" code="0x00660018"/>
		</enumeration>
		<enumeration name="MsoPatternType" code="PpTy">
			<enumerator name="pattern unset" code="0x0066fffe"/>
			<enumerator name="five percent pattern" code="0x00670001"/>
			<enumerator name="ten percent pattern" code="0x00670002"/>
			<enumerator name="twenty percent pattern" code="0x00670003"/>
			<enumerator name="twenty five percent pattern" code="0x00670004"/>
			<enumerator name="thirty percent pattern" code="0x00670005"/>
			<enumerator name="forty percent pattern" code="0x00670006"/>
			<enumerator name="fifty percent pattern" code="0x00670007"/>
			<enumerator name="sixty percent pattern" code="0x00670008"/>
			<enumerator name="seventy percent pattern" code="0x00670009"/>
			<enumerator name="seventy five percent pattern" code="0x0067000a"/>
			<enumerator name="eighty percent pattern" code="0x0067000b"/>
			<enumerator name="ninety percent pattern" code="0x0067000c"/>
			<enumerator name="dark horizontal pattern" code="0x0067000d"/>
			<enumerator name="dark vertical pattern" code="0x0067000e"/>
			<enumerator name="dark downward diagonal pattern" code="0x0067000f"/>
			<enumerator name="dark upward diagonal pattern" code="0x00670010"/>
			<enumerator name="small checker board pattern" code="0x00670011"/>
			<enumerator name="trellis pattern" code="0x00670012"/>
			<enumerator name="light horizontal pattern" code="0x00670013"/>
			<enumerator name="light vertical pattern" code="0x00670014"/>
			<enumerator name="light downward diagonal pattern" code="0x00670015"/>
			<enumerator name="light upward diagonal pattern" code="0x00670016"/>
			<enumerator name="small grid pattern" code="0x00670017"/>
			<enumerator name="dotted diamond pattern" code="0x00670018"/>
			<enumerator name="wide downward diagonal" code="0x00670019"/>
			<enumerator name="wide upward diagonal pattern" code="0x0067001a"/>
			<enumerator name="dashed upward diagonal pattern" code="0x0067001b"/>
			<enumerator name="dashed downward diagonal pattern" code="0x0067001c"/>
			<enumerator name="narrow vertical pattern" code="0x0067001d"/>
			<enumerator name="narrow horizontal pattern" code="0x0067001e"/>
			<enumerator name="dashed vertical pattern" code="0x0067001f"/>
			<enumerator name="dashed horizontal pattern" code="0x00670020"/>
			<enumerator name="large confetti pattern" code="0x00670021"/>
			<enumerator name="large grid pattern" code="0x00670022"/>
			<enumerator name="horizontal brick pattern" code="0x00670023"/>
			<enumerator name="large checker board pattern" code="0x00670024"/>
			<enumerator name="small confetti pattern" code="0x00670025"/>
			<enumerator name="zig zag pattern" code="0x00670026"/>
			<enumerator name="solid diamond pattern" code="0x00670027"/>
			<enumerator name="diagonal brick pattern" code="0x00670028"/>
			<enumerator name="outlined diamond pattern" code="0x00670029"/>
			<enumerator name="plaid pattern" code="0x0067002a"/>
			<enumerator name="sphere pattern" code="0x0067002b"/>
			<enumerator name="weave pattern" code="0x0067002c"/>
			<enumerator name="dotted grid pattern" code="0x0067002d"/>
			<enumerator name="divot pattern" code="0x0067002e"/>
			<enumerator name="shingle pattern" code="0x0067002f"/>
			<enumerator name="wave pattern" code="0x00670030"/>
			<enumerator name="horizontal pattern" code="0x00670031"/>
			<enumerator name="vertical pattern" code="0x00670032"/>
			<enumerator name="cross pattern" code="0x00670033"/>
			<enumerator name="downward diagonal pattern" code="0x00670034"/>
			<enumerator name="upward diagonal pattern" code="0x00670035"/>
			<enumerator name="diagonal cross pattern" code="0x00670035"/>
		</enumeration>
		<enumeration name="MsoPresetGradientType" code="mPGb">
			<enumerator name="preset gradient unset" code="0x0067fffe"/>
			<enumerator name="gradient early sunset" code="0x00680001"/>
			<enumerator name="gradient late sunset" code="0x00680002"/>
			<enumerator name="gradient nightfall" code="0x00680003"/>
			<enumerator name="gradient daybreak" code="0x00680004"/>
			<enumerator name="gradient horizon" code="0x00680005"/>
			<enumerator name="gradient desert" code="0x00680006"/>
			<enumerator name="gradient ocean" code="0x00680007"/>
			<enumerator name="gradient calm water" code="0x00680008"/>
			<enumerator name="gradient fire" code="0x00680009"/>
			<enumerator name="gradient fog" code="0x0068000a"/>
			<enumerator name="gradient moss" code="0x0068000b"/>
			<enumerator name="gradient peacock" code="0x0068000c"/>
			<enumerator name="gradient wheat" code="0x0068000d"/>
			<enumerator name="gradient parchment" code="0x0068000e"/>
			<enumerator name="gradient mahogany" code="0x0068000f"/>
			<enumerator name="gradient rainbow" code="0x00680010"/>
			<enumerator name="gradient rainbow2" code="0x00680011"/>
			<enumerator name="gradient gold" code="0x00680012"/>
			<enumerator name="gradient gold2" code="0x00680013"/>
			<enumerator name="gradient brass" code="0x00680014"/>
			<enumerator name="gradient chrome" code="0x00680015"/>
			<enumerator name="gradient chrome2" code="0x00680016"/>
			<enumerator name="gradient silver" code="0x00680017"/>
			<enumerator name="gradient sapphire" code="0x00680018"/>
		</enumeration>
		<enumeration name="MsoShadowType" code="mSdT">
			<enumerator name="shadow unset" code="0x035ffffe"/>
			<enumerator name="shadow1" code="0x03600001"/>
			<enumerator name="shadow2" code="0x03600002"/>
			<enumerator name="shadow3" code="0x03600003"/>
			<enumerator name="shadow4" code="0x03600004"/>
			<enumerator name="shadow5" code="0x03600005"/>
			<enumerator name="shadow6" code="0x03600006"/>
			<enumerator name="shadow7" code="0x03600007"/>
			<enumerator name="shadow8" code="0x03600008"/>
			<enumerator name="shadow9" code="0x03600009"/>
			<enumerator name="shadow10" code="0x0360000a"/>
			<enumerator name="shadow11" code="0x0360000b"/>
			<enumerator name="shadow12" code="0x0360000c"/>
			<enumerator name="shadow13" code="0x0360000d"/>
			<enumerator name="shadow14" code="0x0360000e"/>
			<enumerator name="shadow15" code="0x0360000f"/>
			<enumerator name="shadow16" code="0x03600010"/>
			<enumerator name="shadow17" code="0x03600011"/>
			<enumerator name="shadow18" code="0x03600012"/>
			<enumerator name="shadow19" code="0x03600013"/>
			<enumerator name="shadow20" code="0x03600014"/>
			<enumerator name="shadow21" code="0x03600015"/>
			<enumerator name="shadow22" code="0x03600016"/>
			<enumerator name="shadow23" code="0x03600017"/>
			<enumerator name="shadow24" code="0x03600018"/>
			<enumerator name="shadow25" code="0x03600019"/>
			<enumerator name="shadow26" code="0x0360001a"/>
			<enumerator name="shadow27" code="0x0360001b"/>
			<enumerator name="shadow28" code="0x0360001c"/>
			<enumerator name="shadow29" code="0x0360001d"/>
			<enumerator name="shadow30" code="0x0360001e"/>
			<enumerator name="shadow31" code="0x0360001f"/>
			<enumerator name="shadow32" code="0x03600020"/>
			<enumerator name="shadow33" code="0x03600021"/>
			<enumerator name="shadow34" code="0x03600022"/>
			<enumerator name="shadow35" code="0x03600023"/>
			<enumerator name="shadow36" code="0x03600024"/>
			<enumerator name="shadow37" code="0x03600025"/>
			<enumerator name="shadow38" code="0x03600026"/>
			<enumerator name="shadow39" code="0x03600027"/>
			<enumerator name="shadow40" code="0x03600028"/>
			<enumerator name="shadow41" code="0x03600029"/>
			<enumerator name="shadow42" code="0x0360002a"/>
			<enumerator name="shadow43" code="0x0360002b"/>
		</enumeration>
		<enumeration name="MsoPresetTextEffect" code="mPXF">
			<enumerator name="wordart format unset" code="0x03f1fffe"/>
			<enumerator name="wordart format1" code="0x03f20000"/>
			<enumerator name="wordart format2" code="0x03f20001"/>
			<enumerator name="wordart format3" code="0x03f20002"/>
			<enumerator name="wordart format4" code="0x03f20003"/>
			<enumerator name="wordart format5" code="0x03f20004"/>
			<enumerator name="wordart format6" code="0x03f20005"/>
			<enumerator name="wordart format7" code="0x03f20006"/>
			<enumerator name="wordart format8" code="0x03f20007"/>
			<enumerator name="wordart format9" code="0x03f20008"/>
			<enumerator name="wordart format10" code="0x03f20009"/>
			<enumerator name="wordart format11" code="0x03f2000a"/>
			<enumerator name="wordart format12" code="0x03f2000b"/>
			<enumerator name="wordart format13" code="0x03f2000c"/>
			<enumerator name="wordart format14" code="0x03f2000d"/>
			<enumerator name="wordart format15" code="0x03f2000e"/>
			<enumerator name="wordart format16" code="0x03f2000f"/>
			<enumerator name="wordart format17" code="0x03f20010"/>
			<enumerator name="wordart format18" code="0x03f20011"/>
			<enumerator name="wordart format19" code="0x03f20012"/>
			<enumerator name="wordart format20" code="0x03f20013"/>
			<enumerator name="wordart format21" code="0x03f20014"/>
			<enumerator name="wordart format22" code="0x03f20015"/>
			<enumerator name="wordart format23" code="0x03f20016"/>
			<enumerator name="wordart format24" code="0x03f20017"/>
			<enumerator name="wordart format25" code="0x03f20018"/>
			<enumerator name="wordart format26" code="0x03f20019"/>
			<enumerator name="wordart format27" code="0x03f2001a"/>
			<enumerator name="wordart format28" code="0x03f2001b"/>
			<enumerator name="wordart format29" code="0x03f2001c"/>
			<enumerator name="wordart format30" code="0x03f2001d"/>
			<enumerator name="wordart format31" code="0x03f2001e"/>
			<enumerator name="wordart format32" code="0x03f2001f"/>
			<enumerator name="wordart format33" code="0x03f20020"/>
			<enumerator name="wordart format34" code="0x03f20021"/>
			<enumerator name="wordart format35" code="0x03f20022"/>
			<enumerator name="wordart format36" code="0x03f20023"/>
			<enumerator name="wordart format37" code="0x03f20024"/>
			<enumerator name="wordart format38" code="0x03f20025"/>
			<enumerator name="wordart format39" code="0x03f20026"/>
			<enumerator name="wordart format40" code="0x03f20027"/>
			<enumerator name="wordart format41" code="0x03f20028"/>
			<enumerator name="wordart format42" code="0x03f20029"/>
			<enumerator name="wordart format43" code="0x03f2002a"/>
			<enumerator name="wordart format44" code="0x03f2002b"/>
			<enumerator name="wordart format45" code="0x03f2002c"/>
			<enumerator name="wordart format46" code="0x03f2002d"/>
			<enumerator name="wordart format47" code="0x03f2002e"/>
			<enumerator name="wordart format48" code="0x03f2002f"/>
			<enumerator name="wordart format49" code="0x03f20030"/>
			<enumerator name="wordart format50" code="0x03f20031"/>
		</enumeration>
		<enumeration name="MsoPresetTextEffectShape" code="mPTs">
			<enumerator name="text effect shape unset" code="0x0097fffe"/>
			<enumerator name="plain text" code="0x00980001"/>
			<enumerator name="stop" code="0x00980002"/>
			<enumerator name="triangle up" code="0x00980003"/>
			<enumerator name="triangle down" code="0x00980004"/>
			<enumerator name="chevron up" code="0x00980005"/>
			<enumerator name="chevron down" code="0x00980006"/>
			<enumerator name="ring inside" code="0x00980007"/>
			<enumerator name="ring outside" code="0x00980008"/>
			<enumerator name="arch up curve" code="0x00980009"/>
			<enumerator name="arch down curve" code="0x0098000a"/>
			<enumerator name="circle curve" code="0x0098000b"/>
			<enumerator name="button curve" code="0x0098000c"/>
			<enumerator name="arch up pour" code="0x0098000d"/>
			<enumerator name="arch down pour" code="0x0098000e"/>
			<enumerator name="circle pour" code="0x0098000f"/>
			<enumerator name="button pour" code="0x00980010"/>
			<enumerator name="curve up" code="0x00980011"/>
			<enumerator name="curve down" code="0x00980012"/>
			<enumerator name="can up" code="0x00980013"/>
			<enumerator name="can down" code="0x00980014"/>
			<enumerator name="wave1" code="0x00980015"/>
			<enumerator name="wave2" code="0x00980016"/>
			<enumerator name="double wave1" code="0x00980017"/>
			<enumerator name="double wave2" code="0x00980018"/>
			<enumerator name="inflate" code="0x00980019"/>
			<enumerator name="deflate" code="0x0098001a"/>
			<enumerator name="inflate bottom" code="0x0098001b"/>
			<enumerator name="deflate bottom" code="0x0098001c"/>
			<enumerator name="inflate top" code="0x0098001d"/>
			<enumerator name="deflate top" code="0x0098001e"/>
			<enumerator name="deflate inflate" code="0x0098001f"/>
			<enumerator name="deflate inflate deflate" code="0x00980020"/>
			<enumerator name="fade right" code="0x00980021"/>
			<enumerator name="fade left" code="0x00980022"/>
			<enumerator name="fade up" code="0x00980023"/>
			<enumerator name="fade down" code="0x00980024"/>
			<enumerator name="slant up" code="0x00980025"/>
			<enumerator name="slant down" code="0x00980026"/>
			<enumerator name="cascade up" code="0x00980027"/>
			<enumerator name="cascade down" code="0x00980028"/>
		</enumeration>
		<enumeration name="MsoTextEffectAlignment" code="mTxA">
			<enumerator name="text effect alignment unset" code="0x0096fffe"/>
			<enumerator name="left text effect alignment" code="0x00970001"/>
			<enumerator name="centered text effect alignment" code="0x00970002"/>
			<enumerator name="right text effect alignment" code="0x00970003"/>
			<enumerator name="justify text effect alignment" code="0x00970004"/>
			<enumerator name="word justify text effect alignment" code="0x00970005"/>
			<enumerator name="stretch justify text effect alignment" code="0x00970006"/>
		</enumeration>
		<enumeration name="MsoPresetLightingDirection" code="mPLd">
			<enumerator name="preset lighting direction unset" code="0x009bfffe"/>
			<enumerator name="light from top left" code="0x009c0001"/>
			<enumerator name="light from top" code="0x009c0002"/>
			<enumerator name="light from top right" code="0x009c0003"/>
			<enumerator name="light from left" code="0x009c0004"/>
			<enumerator name="light from none" code="0x009c0005"/>
			<enumerator name="light from right" code="0x009c0006"/>
			<enumerator name="light from bottom left" code="0x009c0007"/>
			<enumerator name="light from bottom" code="0x009c0008"/>
			<enumerator name="light from bottom right" code="0x009c0009"/>
		</enumeration>
		<enumeration name="MsoPresetLightingSoftness" code="mlSf">
			<enumerator name="lighting softness unset" code="0x009cfffe"/>
			<enumerator name="lighting dim" code="0x009d0001"/>
			<enumerator name="lighting normal" code="0x009d0002"/>
			<enumerator name="lighting bright" code="0x009d0003"/>
		</enumeration>
		<enumeration name="MsoPresetMaterial" code="mPMt">
			<enumerator name="preset material unset" code="0x009dfffe"/>
			<enumerator name="matte" code="0x009e0001"/>
			<enumerator name="plastic" code="0x009e0002"/>
			<enumerator name="metal" code="0x009e0003"/>
			<enumerator name="wireframe" code="0x009e0004"/>
			<enumerator name="matte2" code="0x009e0005"/>
			<enumerator name="plastic2" code="0x009e0006"/>
			<enumerator name="metal2" code="0x009e0007"/>
			<enumerator name="warm matte" code="0x009e0008"/>
			<enumerator name="translucent powder" code="0x009e0009"/>
			<enumerator name="powder" code="0x009e000a"/>
			<enumerator name="dark edge" code="0x009e000b"/>
			<enumerator name="soft edge" code="0x009e000c"/>
			<enumerator name="material clear" code="0x009e000d"/>
			<enumerator name="flat" code="0x009e000e"/>
			<enumerator name="soft metal" code="0x009e000f"/>
		</enumeration>
		<enumeration name="MsoPresetExtrusionDirection" code="mExD">
			<enumerator name="preset extrusion direction unset" code="0x0099fffe"/>
			<enumerator name="extrude bottom right" code="0x009a0001"/>
			<enumerator name="extrude bottom" code="0x009a0002"/>
			<enumerator name="extrude bottom left" code="0x009a0003"/>
			<enumerator name="extrude right" code="0x009a0004"/>
			<enumerator name="extrude none" code="0x009a0005"/>
			<enumerator name="extrude left" code="0x009a0006"/>
			<enumerator name="extrude top right" code="0x009a0007"/>
			<enumerator name="extrude top" code="0x009a0008"/>
			<enumerator name="extrude top left" code="0x009a0009"/>
		</enumeration>
		<enumeration name="MsoPresetThreeDFormat" code="m3DF">
			<enumerator name="preset threeD format unset" code="0x0098fffe"/>
			<enumerator name="format1" code="0x00990001"/>
			<enumerator name="format2" code="0x00990002"/>
			<enumerator name="format3" code="0x00990003"/>
			<enumerator name="format4" code="0x00990004"/>
			<enumerator name="format5" code="0x00990005"/>
			<enumerator name="format6" code="0x00990006"/>
			<enumerator name="format7" code="0x00990007"/>
			<enumerator name="format8" code="0x00990008"/>
			<enumerator name="format9" code="0x00990009"/>
			<enumerator name="format10" code="0x0099000a"/>
			<enumerator name="format11" code="0x0099000b"/>
			<enumerator name="format12" code="0x0099000c"/>
			<enumerator name="format13" code="0x0099000d"/>
			<enumerator name="format14" code="0x0099000e"/>
			<enumerator name="format15" code="0x0099000f"/>
			<enumerator name="format16" code="0x00990010"/>
			<enumerator name="format17" code="0x00990011"/>
			<enumerator name="format18" code="0x00990012"/>
			<enumerator name="format19" code="0x00990013"/>
			<enumerator name="format20" code="0x00990014"/>
		</enumeration>
		<enumeration name="MsoExtrusionColorType" code="mExC">
			<enumerator name="extrusion color unset" code="0x009afffe"/>
			<enumerator name="extrusion color automatic" code="0x009b0001"/>
			<enumerator name="extrusion color custom" code="0x009b0002"/>
		</enumeration>
		<enumeration name="MsoConnectorType" code="mCtT">
			<enumerator name="connector type unset" code="0x0068fffe"/>
			<enumerator name="straight" code="0x00690001"/>
			<enumerator name="elbow" code="0x00690002"/>
			<enumerator name="curve" code="0x00690003"/>
		</enumeration>
		<enumeration name="MsoHorizontalAnchor" code="mHzA">
			<enumerator name="horizontal anchor unset" code="0x009efffe"/>
			<enumerator name="horizontal anchor none" code="0x009f0001"/>
			<enumerator name="horizontal anchor center" code="0x009f0002"/>
		</enumeration>
		<enumeration name="MsoVerticalAnchor" code="mVtA">
			<enumerator name="vertical anchor unset" code="0x009ffffe"/>
			<enumerator name="anchor top" code="0x00a00001"/>
			<enumerator name="anchor top baseline" code="0x00a00002"/>
			<enumerator name="anchor middle" code="0x00a00003"/>
			<enumerator name="anchor bottom" code="0x00a00004"/>
			<enumerator name="anchor bottom baseline" code="0x00a00005"/>
		</enumeration>
		<enumeration name="MsoAutoShapeType" code="mAsT">
			<enumerator name="autoshape shape type unset" code="0x0069fffe"/>
			<enumerator name="autoshape rectangle" code="0x006a0001"/>
			<enumerator name="autoshape parallelogram" code="0x006a0002"/>
			<enumerator name="autoshape trapezoid" code="0x006a0003"/>
			<enumerator name="autoshape diamond" code="0x006a0004"/>
			<enumerator name="autoshape rounded rectangle" code="0x006a0005"/>
			<enumerator name="autoshape octagon" code="0x006a0006"/>
			<enumerator name="autoshape isosceles triangle" code="0x006a0007"/>
			<enumerator name="autoshape right triangle" code="0x006a0008"/>
			<enumerator name="autoshape oval" code="0x006a0009"/>
			<enumerator name="autoshape hexagon" code="0x006a000a"/>
			<enumerator name="autoshape cross" code="0x006a000b"/>
			<enumerator name="autoshape regular pentagon" code="0x006a000c"/>
			<enumerator name="autoshape can" code="0x006a000d"/>
			<enumerator name="autoshape cube" code="0x006a000e"/>
			<enumerator name="autoshape bevel" code="0x006a000f"/>
			<enumerator name="autoshape folded corner" code="0x006a0010"/>
			<enumerator name="autoshape smiley face" code="0x006a0011"/>
			<enumerator name="autoshape donut" code="0x006a0012"/>
			<enumerator name="autoshape no symbol" code="0x006a0013"/>
			<enumerator name="autoshape block arc" code="0x006a0014"/>
			<enumerator name="autoshape heart" code="0x006a0015"/>
			<enumerator name="autoshape lightning bolt" code="0x006a0016"/>
			<enumerator name="autoshape sun" code="0x006a0017"/>
			<enumerator name="autoshape moon" code="0x006a0018"/>
			<enumerator name="autoshape arc" code="0x006a0019"/>
			<enumerator name="autoshape double bracket" code="0x006a001a"/>
			<enumerator name="autoshape double brace" code="0x006a001b"/>
			<enumerator name="autoshape plaque" code="0x006a001c"/>
			<enumerator name="autoshape left bracket" code="0x006a001d"/>
			<enumerator name="autoshape right bracket" code="0x006a001e"/>
			<enumerator name="autoshape left brace" code="0x006a001f"/>
			<enumerator name="autoshape right brace" code="0x006a0020"/>
			<enumerator name="autoshape right arrow" code="0x006a0021"/>
			<enumerator name="autoshape left arrow" code="0x006a0022"/>
			<enumerator name="autoshape up arrow" code="0x006a0023"/>
			<enumerator name="autoshape down arrow" code="0x006a0024"/>
			<enumerator name="autoshape left right arrow" code="0x006a0025"/>
			<enumerator name="autoshape up down arrow" code="0x006a0026"/>
			<enumerator name="autoshape quad arrow" code="0x006a0027"/>
			<enumerator name="autoshape left right up arrow" code="0x006a0028"/>
			<enumerator name="autoshape bent arrow" code="0x006a0029"/>
			<enumerator name="autoshape U turn arrow" code="0x006a002a"/>
			<enumerator name="autoshape left up arrow" code="0x006a002b"/>
			<enumerator name="autoshape bent up arrow" code="0x006a002c"/>
			<enumerator name="autoshape curved right arrow" code="0x006a002d"/>
			<enumerator name="autoshape curved left arrow" code="0x006a002e"/>
			<enumerator name="autoshape curved up arrow" code="0x006a002f"/>
			<enumerator name="autoshape curved down arrow" code="0x006a0030"/>
			<enumerator name="autoshape striped right arrow" code="0x006a0031"/>
			<enumerator name="autoshape notched right arrow" code="0x006a0032"/>
			<enumerator name="autoshape pentagon" code="0x006a0033"/>
			<enumerator name="autoshape chevron" code="0x006a0034"/>
			<enumerator name="autoshape right arrow callout" code="0x006a0035"/>
			<enumerator name="autoshape left arrow callout" code="0x006a0036"/>
			<enumerator name="autoshape up arrow callout" code="0x006a0037"/>
			<enumerator name="autoshape down arrow callout" code="0x006a0038"/>
			<enumerator name="autoshape left right arrow callout" code="0x006a0039"/>
			<enumerator name="autoshape up down arrow callout" code="0x006a003a"/>
			<enumerator name="autoshape quad arrow callout" code="0x006a003b"/>
			<enumerator name="autoshape circular arrow" code="0x006a003c"/>
			<enumerator name="autoshape flowchart process" code="0x006a003d"/>
			<enumerator name="autoshape flowchart alternate process" code="0x006a003e"/>
			<enumerator name="autoshape flowchart decision" code="0x006a003f"/>
			<enumerator name="autoshape flowchart data" code="0x006a0040"/>
			<enumerator name="autoshape flowchart predefined process" code="0x006a0041"/>
			<enumerator name="autoshape flowchart internal storage" code="0x006a0042"/>
			<enumerator name="autoshape flowchart document" code="0x006a0043"/>
			<enumerator name="autoshape flowchart multi document" code="0x006a0044"/>
			<enumerator name="autoshape flowchart terminator" code="0x006a0045"/>
			<enumerator name="autoshape flowchart preparation" code="0x006a0046"/>
			<enumerator name="autoshape flowchart manual input" code="0x006a0047"/>
			<enumerator name="autoshape flowchart manual operation" code="0x006a0048"/>
			<enumerator name="autoshape flowchart connector" code="0x006a0049"/>
			<enumerator name="autoshape flowchart offpage connector" code="0x006a004a"/>
			<enumerator name="autoshape flowchart card" code="0x006a004b"/>
			<enumerator name="autoshape flowchart punched tape" code="0x006a004c"/>
			<enumerator name="autoshape flowchart summing junction" code="0x006a004d"/>
			<enumerator name="autoshape flowchart or" code="0x006a004e"/>
			<enumerator name="autoshape flowchart collate" code="0x006a004f"/>
			<enumerator name="autoshape flowchart sort" code="0x006a0050"/>
			<enumerator name="autoshape flowchart extract" code="0x006a0051"/>
			<enumerator name="autoshape flowchart merge" code="0x006a0052"/>
			<enumerator name="autoshape flowchart stored data" code="0x006a0053"/>
			<enumerator name="autoshape flowchart delay" code="0x006a0054"/>
			<enumerator name="autoshape flowchart sequential access storage" code="0x006a0055"/>
			<enumerator name="autoshape flowchart magnetic disk" code="0x006a0056"/>
			<enumerator name="autoshape flowchart direct access storage" code="0x006a0057"/>
			<enumerator name="autoshape flowchart display" code="0x006a0058"/>
			<enumerator name="autoshape explosion one" code="0x006a0059"/>
			<enumerator name="autoshape explosion two" code="0x006a005a"/>
			<enumerator name="autoshape four point star" code="0x006a005b"/>
			<enumerator name="autoshape five point star" code="0x006a005c"/>
			<enumerator name="autoshape eight point star" code="0x006a005d"/>
			<enumerator name="autoshape sixteen point star" code="0x006a005e"/>
			<enumerator name="autoshape twenty four point star" code="0x006a005f"/>
			<enumerator name="autoshape thirty two point star" code="0x006a0060"/>
			<enumerator name="autoshape up ribbon" code="0x006a0061"/>
			<enumerator name="autoshape down ribbon" code="0x006a0062"/>
			<enumerator name="autoshape curved up ribbon" code="0x006a0063"/>
			<enumerator name="autoshape curved down ribbon" code="0x006a0064"/>
			<enumerator name="autoshape vertical scroll" code="0x006a0065"/>
			<enumerator name="autoshape horizontal scroll" code="0x006a0066"/>
			<enumerator name="autoshape wave" code="0x006a0067"/>
			<enumerator name="autoshape double wave" code="0x006a0068"/>
			<enumerator name="autoshape rectangular callout" code="0x006a0069"/>
			<enumerator name="autoshape rounded rectangular callout" code="0x006a006a"/>
			<enumerator name="autoshape oval callout" code="0x006a006b"/>
			<enumerator name="autoshape cloud callout" code="0x006a006c"/>
			<enumerator name="autoshape line callout one" code="0x006a006d"/>
			<enumerator name="autoshape line callout two" code="0x006a006e"/>
			<enumerator name="autoshape line callout three" code="0x006a006f"/>
			<enumerator name="autoshape line callout four" code="0x006a0070"/>
			<enumerator name="autoshape line callout one accent bar" code="0x006a0071"/>
			<enumerator name="autoshape line callout two accent bar" code="0x006a0072"/>
			<enumerator name="autoshape line callout three accent bar" code="0x006a0073"/>
			<enumerator name="autoshape line callout four accent bar" code="0x006a0074"/>
			<enumerator name="autoshape line callout one no border" code="0x006a0075"/>
			<enumerator name="autoshape line callout two no border" code="0x006a0076"/>
			<enumerator name="autoshape line callout three no border" code="0x006a0077"/>
			<enumerator name="autoshape line callout four no border" code="0x006a0078"/>
			<enumerator name="autoshape callout one border and accent bar" code="0x006a0079"/>
			<enumerator name="autoshape callout two border and accent bar" code="0x006a007a"/>
			<enumerator name="autoshape callout three border and accent bar" code="0x006a007b"/>
			<enumerator name="autoshape callout four border and accent bar" code="0x006a007c"/>
			<enumerator name="autoshape action button custom" code="0x006a007d"/>
			<enumerator name="autoshape action button home" code="0x006a007e"/>
			<enumerator name="autoshape action button help" code="0x006a007f"/>
			<enumerator name="autoshape action button information" code="0x006a0080"/>
			<enumerator name="autoshape action button back or previous" code="0x006a0081"/>
			<enumerator name="autoshape action button forward or next" code="0x006a0082"/>
			<enumerator name="autoshape action button beginning" code="0x006a0083"/>
			<enumerator name="autoshape action button end" code="0x006a0084"/>
			<enumerator name="autoshape action button return" code="0x006a0085"/>
			<enumerator name="autoshape action button document" code="0x006a0086"/>
			<enumerator name="autoshape action button sound" code="0x006a0087"/>
			<enumerator name="autoshape action button movie" code="0x006a0088"/>
			<enumerator name="autoshape balloon" code="0x006a0089"/>
			<enumerator name="autoshape not primitive" code="0x006a008a"/>
			<enumerator name="autoshape flowchart offline storage" code="0x006a008b"/>
			<enumerator name="autoshape left right ribbon" code="0x006a008c"/>
			<enumerator name="autoshape diagonal stripe" code="0x006a008d"/>
			<enumerator name="autoshape pie" code="0x006a008e"/>
			<enumerator name="autoshape non isosceles trapezoid" code="0x006a008f"/>
			<enumerator name="autoshape Decagon" code="0x006a0090"/>
			<enumerator name="autoshape Heptagon" code="0x006a0091"/>
			<enumerator name="autoshape Dodecagon" code="0x006a0092"/>
			<enumerator name="autoshape six points star" code="0x006a0093"/>
			<enumerator name="autoshape seven points star" code="0x006a0094"/>
			<enumerator name="autoshape ten points star" code="0x006a0095"/>
			<enumerator name="autoshape twelve points star" code="0x006a0096"/>
			<enumerator name="autoshape round one rectangle" code="0x006a0097"/>
			<enumerator name="autoshape round two same rectangle" code="0x006a0098"/>
			<enumerator name="autoshape round two diagonal rectangle" code="0x006a0099"/>
			<enumerator name="autoshape snip round rectangle" code="0x006a009a"/>
			<enumerator name="autoshape snip one rectangle" code="0x006a009b"/>
			<enumerator name="autoshape snip two same rectangle" code="0x006a009c"/>
			<enumerator name="autoshape snip two diagonal rectangle" code="0x006a009d"/>
			<enumerator name="autoshape frame" code="0x006a009e"/>
			<enumerator name="autoshape half frame" code="0x006a009f"/>
			<enumerator name="autoshape tear" code="0x006a00a0"/>
			<enumerator name="autoshape chord" code="0x006a00a1"/>
			<enumerator name="autoshape corner" code="0x006a00a2"/>
			<enumerator name="autoshape math plus" code="0x006a00a3"/>
			<enumerator name="autoshape math minus" code="0x006a00a4"/>
			<enumerator name="autoshape math multiply" code="0x006a00a5"/>
			<enumerator name="autoshape math divide" code="0x006a00a6"/>
			<enumerator name="autoshape math equal" code="0x006a00a7"/>
			<enumerator name="autoshape math not equal" code="0x006a00a8"/>
			<enumerator name="autoshape corner tabs" code="0x006a00a9"/>
			<enumerator name="autoshape square tabs" code="0x006a00aa"/>
			<enumerator name="autoshape plaque tabs" code="0x006a00ab"/>
			<enumerator name="autoshape gear six" code="0x006a00ac"/>
			<enumerator name="autoshape gear nine" code="0x006a00ad"/>
			<enumerator name="autoshape funnel" code="0x006a00ae"/>
			<enumerator name="autoshape pie wedge" code="0x006a00af"/>
			<enumerator name="autoshape left circular arrow" code="0x006a00b0"/>
			<enumerator name="autoshape left right circular arrow" code="0x006a00b1"/>
			<enumerator name="autoshape swoosh arrow" code="0x006a00b2"/>
			<enumerator name="autoshape cloud" code="0x006a00b3"/>
			<enumerator name="autoshape chart x" code="0x006a00b4"/>
			<enumerator name="autoshape chart star" code="0x006a00b5"/>
			<enumerator name="autoshape chart plus" code="0x006a00b6"/>
			<enumerator name="autoshape line inverse" code="0x006a00b7"/>
		</enumeration>
		<enumeration name="MsoShapeType" code="mShp">
			<enumerator name="shape type unset" code="0x008bfffe"/>
			<enumerator name="shape type auto" code="0x008c0001"/>
			<enumerator name="shape type callout" code="0x008c0002"/>
			<enumerator name="shape type chart" code="0x008c0003"/>
			<enumerator name="shape type comment" code="0x008c0004"/>
			<enumerator name="shape type free form" code="0x008c0005"/>
			<enumerator name="shape type group" code="0x008c0006"/>
			<enumerator name="shape type embedded OLE control" code="0x008c0007"/>
			<enumerator name="shape type form control" code="0x008c0008"/>
			<enumerator name="shape type line" code="0x008c0009"/>
			<enumerator name="shape type linked OLE object" code="0x008c000a"/>
			<enumerator name="shape type linked picture" code="0x008c000b"/>
			<enumerator name="shape type OLE control" code="0x008c000c"/>
			<enumerator name="shape type picture" code="0x008c000d"/>
			<enumerator name="shape type place holder" code="0x008c000e"/>
			<enumerator name="shape type word art" code="0x008c000f"/>
			<enumerator name="shape type media" code="0x008c0010"/>
			<enumerator name="shape type text box" code="0x008c0011"/>
			<enumerator name="shape type script anchor" code="0x008c0012"/>
			<enumerator name="shape type table" code="0x008c0013"/>
			<enumerator name="shape type canvas" code="0x008c0014"/>
			<enumerator name="shape type diagram" code="0x008c0015"/>
			<enumerator name="shape type ink" code="0x008c0016"/>
			<enumerator name="shape type ink comment" code="0x008c0017"/>
			<enumerator name="shape type smartart graphic" code="0x008c0018"/>
			<enumerator name="shape type slicer" code="0x008c0019"/>
			<enumerator name="shape type web video" code="0x008c001a"/>
			<enumerator name="shape type content application" code="0x008c001b"/>
			<enumerator name="shape type graphic" code="0x008c001c"/>
			<enumerator name="shape type linked graphic" code="0x008c001d"/>
			<enumerator name="shape type 3d model" code="0x008c001e"/>
			<enumerator name="shape type linked 3d model" code="0x008c001f"/>
		</enumeration>
		<enumeration name="MsoColorType" code="mCrT">
			<enumerator name="color type unset" code="0x006afffe"/>
			<enumerator name="RGB" code="0x006b0001"/>
			<enumerator name="Scheme" code="0x006b0002"/>
		</enumeration>
		<enumeration name="MsoPictureColorType" code="mPc@">
			<enumerator name="picture color type unset" code="0x00b5fffe"/>
			<enumerator name="picture color automatic" code="0x00b60001"/>
			<enumerator name="picture color gray scale" code="0x00b60002"/>
			<enumerator name="picture color black and white" code="0x00b60003"/>
			<enumerator name="picture color watermark" code="0x00b60004"/>
		</enumeration>
		<enumeration name="MsoCalloutAngleType" code="mCAt">
			<enumerator name="angle unset" code="0x006bfffe"/>
			<enumerator name="angle automatic" code="0x006c0001"/>
			<enumerator name="angle30" code="0x006c0002"/>
			<enumerator name="angle45" code="0x006c0003"/>
			<enumerator name="angle60" code="0x006c0004"/>
			<enumerator name="angle90" code="0x006c0005"/>
		</enumeration>
		<enumeration name="MsoCalloutDropType" code="mCDt">
			<enumerator name="drop unset" code="0x006cfffe"/>
			<enumerator name="drop custom" code="0x006d0001"/>
			<enumerator name="drop top" code="0x006d0002"/>
			<enumerator name="drop center" code="0x006d0003"/>
			<enumerator name="drop bottom" code="0x006d0004"/>
		</enumeration>
		<enumeration name="MsoCalloutType" code="mCot">
			<enumerator name="callout unset" code="0x006dfffe"/>
			<enumerator name="callout one" code="0x006e0001"/>
			<enumerator name="callout two" code="0x006e0002"/>
			<enumerator name="callout three" code="0x006e0003"/>
			<enumerator name="callout four" code="0x006e0004"/>
		</enumeration>
		<enumeration name="MsoTextOrientation" code="TxOr">
			<enumerator name="text orientation unset" code="0x008dfffe"/>
			<enumerator name="horizontal" code="0x008e0001"/>
			<enumerator name="upward" code="0x008e0002"/>
			<enumerator name="downward" code="0x008e0003"/>
			<enumerator name="vertical east asian" code="0x008e0004"/>
			<enumerator name="vertical" code="0x008e0005"/>
			<enumerator name="horizontal rotated east asian" code="0x008e0006"/>
		</enumeration>
		<enumeration name="MsoScaleFrom" code="mSFr">
			<enumerator name="scale from top left" code="0x006f0000"/>
			<enumerator name="scale from middle" code="0x006f0001"/>
			<enumerator name="scale from bottom right" code="0x006f0002"/>
		</enumeration>
		<enumeration name="MsoPresetCamera" code="mPzC">
			<enumerator name="preset camera unset" code="0x00aefffe"/>
			<enumerator name="camera legacy oblique from top left" code="0x00af0001"/>
			<enumerator name="camera legacy oblique from top" code="0x00af0002"/>
			<enumerator name="camera legacy oblique from topright" code="0x00af0003"/>
			<enumerator name="camera legacy oblique from left" code="0x00af0004"/>
			<enumerator name="camera legacy oblique from front" code="0x00af0005"/>
			<enumerator name="camera legacy oblique from right" code="0x00af0006"/>
			<enumerator name="camera legacy oblique from bottom left" code="0x00af0007"/>
			<enumerator name="camera legacy oblique from bottom" code="0x00af0008"/>
			<enumerator name="camera legacy oblique from bottom right" code="0x00af0009"/>
			<enumerator name="camera legacy perspective from top left" code="0x00af000a"/>
			<enumerator name="camera legacy perspective from top" code="0x00af000b"/>
			<enumerator name="camera legacy perspective from top right" code="0x00af000c"/>
			<enumerator name="camera legacy perspective from left" code="0x00af000d"/>
			<enumerator name="camera legacy perspective from front" code="0x00af000e"/>
			<enumerator name="camera legacy perspective from right" code="0x00af000f"/>
			<enumerator name="camera legacy perspective from bottom left" code="0x00af0010"/>
			<enumerator name="camera legacy perspective from bottom" code="0x00af0011"/>
			<enumerator name="camera legacy perspective from bottom right" code="0x00af0012"/>
			<enumerator name="camera orthographic" code="0x00af0013"/>
			<enumerator name="camera isometric from top up" code="0x00af0014"/>
			<enumerator name="camera isometric from top down" code="0x00af0015"/>
			<enumerator name="camera isometric from bottom up" code="0x00af0016"/>
			<enumerator name="camera isometric from bottom down" code="0x00af0017"/>
			<enumerator name="camera isometric from left up" code="0x00af0018"/>
			<enumerator name="camera isometric from left down" code="0x00af0019"/>
			<enumerator name="camera isometric from right up" code="0x00af001a"/>
			<enumerator name="camera isometric from right down" code="0x00af001b"/>
			<enumerator name="camera isometric off axis1 from left" code="0x00af001c"/>
			<enumerator name="camera isometric off axis1 from right" code="0x00af001d"/>
			<enumerator name="camera isometric off axis1 from top" code="0x00af001e"/>
			<enumerator name="camera isometric off axis2 from left" code="0x00af001f"/>
			<enumerator name="camera isometric off axis2 from right" code="0x00af0020"/>
			<enumerator name="camera isometric off axis2 from top" code="0x00af0021"/>
			<enumerator name="camera isometric off axis3 from left" code="0x00af0022"/>
			<enumerator name="camera isometric off axis3 from right" code="0x00af0023"/>
			<enumerator name="camera isometric off axis3 from bottom" code="0x00af0024"/>
			<enumerator name="camera isometric off axis4 from left" code="0x00af0025"/>
			<enumerator name="camera isometric off axis4 from right" code="0x00af0026"/>
			<enumerator name="camera isometric off axis4 from bottom" code="0x00af0027"/>
			<enumerator name="camera oblique from top left" code="0x00af0028"/>
			<enumerator name="camera oblique from top" code="0x00af0029"/>
			<enumerator name="camera oblique from top right" code="0x00af002a"/>
			<enumerator name="camera oblique from left" code="0x00af002b"/>
			<enumerator name="camera oblique from right" code="0x00af002c"/>
			<enumerator name="camera oblique from bottom left" code="0x00af002d"/>
			<enumerator name="camera oblique from bottom" code="0x00af002e"/>
			<enumerator name="camera oblique from bottom right" code="0x00af002f"/>
			<enumerator name="camera perspective from front" code="0x00af0030"/>
			<enumerator name="camera perspective from left" code="0x00af0031"/>
			<enumerator name="camera perspective from right" code="0x00af0032"/>
			<enumerator name="camera perspective from above" code="0x00af0033"/>
			<enumerator name="camera perspective from below" code="0x00af0034"/>
			<enumerator name="camera perspective from above facing left" code="0x00af0035"/>
			<enumerator name="camera perspective from above facing right" code="0x00af0036"/>
			<enumerator name="camera perspective contrasting facing left" code="0x00af0037"/>
			<enumerator name="camera perspective contrasting facing right" code="0x00af0038"/>
			<enumerator name="camera perspective heroic facing left" code="0x00af0039"/>
			<enumerator name="camera perspective heroic facing right" code="0x00af003a"/>
			<enumerator name="camera perspective heroic extreme facing left" code="0x00af003b"/>
			<enumerator name="camera perspective heroic extreme facing right" code="0x00af003c"/>
			<enumerator name="camera perspective relaxed" code="0x00af003d"/>
			<enumerator name="camera perspective relaxed moderately" code="0x00af003e"/>
		</enumeration>
		<enumeration name="MsoLightRigType" code="mLtT">
			<enumerator name="light rig unset" code="0x00affffe"/>
			<enumerator name="light rig flat1" code="0x00b00001"/>
			<enumerator name="light rig flat2" code="0x00b00002"/>
			<enumerator name="light rig flat3" code="0x00b00003"/>
			<enumerator name="light rig flat4" code="0x00b00004"/>
			<enumerator name="light rig Normal1" code="0x00b00005"/>
			<enumerator name="light rig Normal2" code="0x00b00006"/>
			<enumerator name="light rig Normal3" code="0x00b00007"/>
			<enumerator name="light rig Normal4" code="0x00b00008"/>
			<enumerator name="light rig Harsh1" code="0x00b00009"/>
			<enumerator name="light rig Harsh2" code="0x00b0000a"/>
			<enumerator name="light rig Harsh3" code="0x00b0000b"/>
			<enumerator name="light rig Harsh4" code="0x00b0000c"/>
			<enumerator name="light rig three point" code="0x00b0000d"/>
			<enumerator name="light rig balanced" code="0x00b0000e"/>
			<enumerator name="light rig soft" code="0x00b0000f"/>
			<enumerator name="light rig harsh" code="0x00b00010"/>
			<enumerator name="light rig flood" code="0x00b00011"/>
			<enumerator name="light rig contrasting" code="0x00b00012"/>
			<enumerator name="light rig morning" code="0x00b00013"/>
			<enumerator name="light rig sunrise" code="0x00b00014"/>
			<enumerator name="light rig sunset" code="0x00b00015"/>
			<enumerator name="light rig chilly" code="0x00b00016"/>
			<enumerator name="light rig freezing" code="0x00b00017"/>
			<enumerator name="light rig flat" code="0x00b00018"/>
			<enumerator name="light rig two point" code="0x00b00019"/>
			<enumerator name="light rig glow" code="0x00b0001a"/>
			<enumerator name="light rig bright room" code="0x00b0001b"/>
		</enumeration>
		<enumeration name="MsoBevelType" code="mBlT">
			<enumerator name="bevel type unset" code="0x00b0fffe"/>
			<enumerator name="bevel none" code="0x00b10001"/>
			<enumerator name="bevel relaxed inset" code="0x00b10002"/>
			<enumerator name="bevel circle" code="0x00b10003"/>
			<enumerator name="bevel slope" code="0x00b10004"/>
			<enumerator name="bevel cross" code="0x00b10005"/>
			<enumerator name="bevel angle" code="0x00b10006"/>
			<enumerator name="bevel soft round" code="0x00b10007"/>
			<enumerator name="bevel convex" code="0x00b10008"/>
			<enumerator name="bevel cool slant" code="0x00b10009"/>
			<enumerator name="bevel divot" code="0x00b1000a"/>
			<enumerator name="bevel riblet" code="0x00b1000b"/>
			<enumerator name="bevel hard edge" code="0x00b1000c"/>
			<enumerator name="bevel art deco" code="0x00b1000d"/>
		</enumeration>
		<enumeration name="MsoShadowStyle" code="mSSt">
			<enumerator name="shadow style unset" code="0x00b1fffe"/>
			<enumerator name="shadow style inner" code="0x00b20001"/>
			<enumerator name="shadow style outer" code="0x00b20002"/>
		</enumeration>
		<enumeration name="MsoParagraphAlignment" code="ppgA">
			<enumerator name="paragraph alignment unset" code="0x00e6fffe"/>
			<enumerator name="paragraph align left" code="0x00e70001"/>
			<enumerator name="paragraph align center" code="0x00e70002"/>
			<enumerator name="paragraph align right" code="0x00e70003"/>
			<enumerator name="paragraph align justify" code="0x00e70004"/>
			<enumerator name="paragraph align distribute" code="0x00e70005"/>
			<enumerator name="paragraph align Thai" code="0x00e70006"/>
			<enumerator name="paragraph align justify low" code="0x00e70007"/>
		</enumeration>
		<enumeration name="MsoTextStrike" code="mTSt">
			<enumerator name="strike unset" code="0x00b3fffe"/>
			<enumerator name="no strike" code="0x00b40000"/>
			<enumerator name="single strike" code="0x00b40001"/>
			<enumerator name="double strike" code="0x00b40002"/>
		</enumeration>
		<enumeration name="MsoTextCaps" code="mTCa">
			<enumerator name="caps unset" code="0x00b4fffe"/>
			<enumerator name="no caps" code="0x00b50000"/>
			<enumerator name="small caps" code="0x00b50001"/>
			<enumerator name="all caps" code="0x00b50002"/>
		</enumeration>
		<enumeration name="MsoTextUnderlineType" code="mTUl">
			<enumerator name="underline unset" code="0x03eefffe"/>
			<enumerator name="no underline" code="0x03ef0000"/>
			<enumerator name="underline words only" code="0x03ef0001"/>
			<enumerator name="underline single line" code="0x03ef0002"/>
			<enumerator name="underline double line" code="0x03ef0003"/>
			<enumerator name="underline heavy line" code="0x03ef0004"/>
			<enumerator name="underline dotted line" code="0x03ef0005"/>
			<enumerator name="underline heavy dotted line" code="0x03ef0006"/>
			<enumerator name="underline dash line" code="0x03ef0007"/>
			<enumerator name="underline heavy dash line" code="0x03ef0008"/>
			<enumerator name="underline long dash line" code="0x03ef0009"/>
			<enumerator name="underline heavy long dash line" code="0x03ef000a"/>
			<enumerator name="underline dot dash line" code="0x03ef000b"/>
			<enumerator name="underline heavy dot dash line" code="0x03ef000c"/>
			<enumerator name="underline dot dot dash line" code="0x03ef000d"/>
			<enumerator name="underline heavy dot dot dash line" code="0x03ef000e"/>
			<enumerator name="underline wavy line" code="0x03ef000f"/>
			<enumerator name="underline heavy wavy line" code="0x03ef0010"/>
			<enumerator name="underline wavy double line" code="0x03ef0011"/>
		</enumeration>
		<enumeration name="MsoTextTabAlign" code="mTTA">
			<enumerator name="tab unset" code="0x00b6fffe"/>
			<enumerator name="left tab" code="0x00b70000"/>
			<enumerator name="center tab" code="0x00b70001"/>
			<enumerator name="right tab" code="0x00b70002"/>
			<enumerator name="decimal tab" code="0x00b70003"/>
		</enumeration>
		<enumeration name="MsoTextCharWrap" code="mTCW">
			<enumerator name="character wrap unset" code="0x00b7fffe"/>
			<enumerator name="no character wrap" code="0x00b80000"/>
			<enumerator name="standard character wrap" code="0x00b80001"/>
			<enumerator name="strict character wrap" code="0x00b80002"/>
			<enumerator name="custom character wrap" code="0x00b80003"/>
		</enumeration>
		<enumeration name="MsoTextFontAlign" code="mTFA">
			<enumerator name="font alignment unset" code="0x00b8fffe"/>
			<enumerator name="automatic alignment" code="0x00b90000"/>
			<enumerator name="top alignment" code="0x00b90001"/>
			<enumerator name="center alignment" code="0x00b90002"/>
			<enumerator name="baseline alignment" code="0x00b90003"/>
			<enumerator name="bottom alignment" code="0x00b90004"/>
		</enumeration>
		<enumeration name="MsoAutoSize" code="pAtS">
			<enumerator name="auto size unset" code="0x00e4fffe"/>
			<enumerator name="auto size none" code="0x00e50000"/>
			<enumerator name="shape to fit text" code="0x00e50001"/>
			<enumerator name="text to fit shape" code="0x00e50002"/>
		</enumeration>
		<enumeration name="MsoPathFormat" code="mPFo">
			<enumerator name="path type unset" code="0x00bafffe"/>
			<enumerator name="no path type" code="0x00bb0000"/>
			<enumerator name="path type1" code="0x00bb0001"/>
			<enumerator name="path type2" code="0x00bb0002"/>
			<enumerator name="path type3" code="0x00bb0003"/>
			<enumerator name="path type4" code="0x00bb0004"/>
		</enumeration>
		<enumeration name="MsoWarpFormat" code="mWFo">
			<enumerator name="warp format unset" code="0x00bbfffe"/>
			<enumerator name="warp format1" code="0x00bc0000"/>
			<enumerator name="warp format2" code="0x00bc0001"/>
			<enumerator name="warp format3" code="0x00bc0002"/>
			<enumerator name="warp format4" code="0x00bc0003"/>
			<enumerator name="warp format5" code="0x00bc0004"/>
			<enumerator name="warp format6" code="0x00bc0005"/>
			<enumerator name="warp format7" code="0x00bc0006"/>
			<enumerator name="warp format8" code="0x00bc0007"/>
			<enumerator name="warp format9" code="0x00bc0008"/>
			<enumerator name="warp format10" code="0x00bc0009"/>
			<enumerator name="warp format11" code="0x00bc000a"/>
			<enumerator name="warp format12" code="0x00bc000b"/>
			<enumerator name="warp format13" code="0x00bc000c"/>
			<enumerator name="warp format14" code="0x00bc000d"/>
			<enumerator name="warp format15" code="0x00bc000e"/>
			<enumerator name="warp format16" code="0x00bc000f"/>
			<enumerator name="warp format17" code="0x00bc0010"/>
			<enumerator name="warp format18" code="0x00bc0011"/>
			<enumerator name="warp format19" code="0x00bc0012"/>
			<enumerator name="warp format20" code="0x00bc0013"/>
			<enumerator name="warp format21" code="0x00bc0014"/>
			<enumerator name="warp format22" code="0x00bc0015"/>
			<enumerator name="warp format23" code="0x00bc0016"/>
			<enumerator name="warp format24" code="0x00bc0017"/>
			<enumerator name="warp format25" code="0x00bc0018"/>
			<enumerator name="warp format26" code="0x00bc0019"/>
			<enumerator name="warp format27" code="0x00bc001a"/>
			<enumerator name="warp format28" code="0x00bc001b"/>
			<enumerator name="warp format29" code="0x00bc001c"/>
			<enumerator name="warp format30" code="0x00bc001d"/>
			<enumerator name="warp format31" code="0x00bc001e"/>
			<enumerator name="warp format32" code="0x00bc001f"/>
			<enumerator name="warp format33" code="0x00bc0020"/>
			<enumerator name="warp format34" code="0x00bc0021"/>
			<enumerator name="warp format35" code="0x00bc0022"/>
			<enumerator name="warp format36" code="0x00bc0023"/>
			<enumerator name="warp format37" code="0x00bc0024"/>
		</enumeration>
		<enumeration name="MsoTextChangeCase" code="pCgC">
			<enumerator name="case sentence" code="0x00e40001"/>
			<enumerator name="case lower" code="0x00e40002"/>
			<enumerator name="case upper" code="0x00e40003"/>
			<enumerator name="case title" code="0x00e40004"/>
			<enumerator name="case toggle" code="0x00e40005"/>
		</enumeration>
		<enumeration name="MsoDateTimeFormat" code="mDTF">
			<enumerator name="date time format unset" code="0x00bdfffe"/>
			<enumerator name="date time format Mdyy" code="0x00be0001"/>
			<enumerator name="date time format ddddMMMMddyyyy" code="0x00be0002"/>
			<enumerator name="date time format dMMMMyyyy" code="0x00be0003"/>
			<enumerator name="date time format MMMMdyyyy" code="0x00be0004"/>
			<enumerator name="date time format dMMMyy" code="0x00be0005"/>
			<enumerator name="date time format MMMMyy" code="0x00be0006"/>
			<enumerator name="date time format MMyy" code="0x00be0007"/>
			<enumerator name="date time format MMddyyHmm" code="0x00be0008"/>
			<enumerator name="date time format MMddyyhmmAMPM" code="0x00be0009"/>
			<enumerator name="date time format Hmm" code="0x00be000a"/>
			<enumerator name="date time format Hmmss" code="0x00be000b"/>
			<enumerator name="date time format hmmAMPM" code="0x00be000c"/>
			<enumerator name="date time format hmmssAMPM" code="0x00be000d"/>
			<enumerator name="date time format figure out" code="0x00be000e"/>
		</enumeration>
		<enumeration name="MsoSoftEdgeType" code="mSET">
			<enumerator name="soft edge unset" code="0x00bffffe"/>
			<enumerator name="no soft edge" code="0x00c00000"/>
			<enumerator name="soft edge type1" code="0x00c00001"/>
			<enumerator name="soft edge type2" code="0x00c00002"/>
			<enumerator name="soft edge type3" code="0x00c00003"/>
			<enumerator name="soft edge type4" code="0x00c00004"/>
			<enumerator name="soft edge type5" code="0x00c00005"/>
			<enumerator name="soft edge type6" code="0x00c00006"/>
		</enumeration>
		<enumeration name="MsoThemeColorSchemeIndex" code="mCSI">
			<enumerator name="first dark scheme color" code="0x00c10001"/>
			<enumerator name="first light scheme color" code="0x00c10002"/>
			<enumerator name="second dark scheme color" code="0x00c10003"/>
			<enumerator name="second light scheme color" code="0x00c10004"/>
			<enumerator name="first accent scheme color" code="0x00c10005"/>
			<enumerator name="second accent scheme color" code="0x00c10006"/>
			<enumerator name="third accent scheme color" code="0x00c10007"/>
			<enumerator name="fourth accent scheme color" code="0x00c10008"/>
			<enumerator name="fifth accent scheme color" code="0x00c10009"/>
			<enumerator name="sixth accent scheme color" code="0x00c1000a"/>
			<enumerator name="hyperlink scheme color" code="0x00c1000b"/>
			<enumerator name="followed hyperlink scheme color" code="0x00c1000c"/>
		</enumeration>
		<enumeration name="MsoThemeColorIndex" code="mCoI">
			<enumerator name="theme color unset" code="0x00c1fffe"/>
			<enumerator name="no theme color" code="0x00c20000"/>
			<enumerator name="first dark theme color" code="0x00c20001"/>
			<enumerator name="first light theme color" code="0x00c20002"/>
			<enumerator name="second dark theme color" code="0x00c20003"/>
			<enumerator name="second light theme color" code="0x00c20004"/>
			<enumerator name="first accent theme color" code="0x00c20005"/>
			<enumerator name="second accent theme color" code="0x00c20006"/>
			<enumerator name="third accent theme color" code="0x00c20007"/>
			<enumerator name="fourth accent theme color" code="0x00c20008"/>
			<enumerator name="fifth accent theme color" code="0x00c20009"/>
			<enumerator name="sixth accent theme color" code="0x00c2000a"/>
			<enumerator name="hyperlink theme color" code="0x00c2000b"/>
			<enumerator name="followed hyperlink theme color" code="0x00c2000c"/>
			<enumerator name="first text theme color" code="0x00c2000d"/>
			<enumerator name="first background theme color" code="0x00c2000e"/>
			<enumerator name="second text theme color" code="0x00c2000f"/>
			<enumerator name="second background theme color" code="0x00c20010"/>
		</enumeration>
		<enumeration name="MsoFontLanguageIndex" code="mFLI">
			<enumerator name="theme font latin" code="0x00c30001"/>
			<enumerator name="theme font complex script" code="0x00c30002"/>
			<enumerator name="theme font high ansi" code="0x00c30003"/>
			<enumerator name="theme font east asian" code="0x00c30004"/>
		</enumeration>
		<enumeration name="MsoShapeStyleIndex" code="mSSI">
			<enumerator name="shape style unset" code="0x00c3fffe"/>
			<enumerator name="shape not a preset" code="0x00c40000"/>
			<enumerator name="shape preset1" code="0x00c40001"/>
			<enumerator name="shape preset2" code="0x00c40002"/>
			<enumerator name="shape preset3" code="0x00c40003"/>
			<enumerator name="shape preset4" code="0x00c40004"/>
			<enumerator name="shape preset5" code="0x00c40005"/>
			<enumerator name="shape preset6" code="0x00c40006"/>
			<enumerator name="shape preset7" code="0x00c40007"/>
			<enumerator name="shape preset8" code="0x00c40008"/>
			<enumerator name="shape preset9" code="0x00c40009"/>
			<enumerator name="shape preset10" code="0x00c4000a"/>
			<enumerator name="shape preset11" code="0x00c4000b"/>
			<enumerator name="shape preset12" code="0x00c4000c"/>
			<enumerator name="shape preset13" code="0x00c4000d"/>
			<enumerator name="shape preset14" code="0x00c4000e"/>
			<enumerator name="shape preset15" code="0x00c4000f"/>
			<enumerator name="shape preset16" code="0x00c40010"/>
			<enumerator name="shape preset17" code="0x00c40011"/>
			<enumerator name="shape preset18" code="0x00c40012"/>
			<enumerator name="shape preset19" code="0x00c40013"/>
			<enumerator name="shape preset20" code="0x00c40014"/>
			<enumerator name="shape preset21" code="0x00c40015"/>
			<enumerator name="shape preset22" code="0x00c40016"/>
			<enumerator name="shape preset23" code="0x00c40017"/>
			<enumerator name="shape preset24" code="0x00c40018"/>
			<enumerator name="shape preset25" code="0x00c40019"/>
			<enumerator name="shape preset26" code="0x00c4001a"/>
			<enumerator name="shape preset27" code="0x00c4001b"/>
			<enumerator name="shape preset28" code="0x00c4001c"/>
			<enumerator name="shape preset29" code="0x00c4001d"/>
			<enumerator name="shape preset30" code="0x00c4001e"/>
			<enumerator name="shape preset31" code="0x00c4001f"/>
			<enumerator name="shape preset32" code="0x00c40020"/>
			<enumerator name="shape preset33" code="0x00c40021"/>
			<enumerator name="shape preset34" code="0x00c40022"/>
			<enumerator name="shape preset35" code="0x00c40023"/>
			<enumerator name="shape preset36" code="0x00c40024"/>
			<enumerator name="shape preset37" code="0x00c40025"/>
			<enumerator name="shape preset38" code="0x00c40026"/>
			<enumerator name="shape preset39" code="0x00c40027"/>
			<enumerator name="shape preset40" code="0x00c40028"/>
			<enumerator name="shape preset41" code="0x00c40029"/>
			<enumerator name="shape preset42" code="0x00c4002a"/>
			<enumerator name="line preset1" code="0x00c42711"/>
			<enumerator name="line preset2" code="0x00c42712"/>
			<enumerator name="line preset3" code="0x00c42713"/>
			<enumerator name="line preset4" code="0x00c42714"/>
			<enumerator name="line preset5" code="0x00c42715"/>
			<enumerator name="line preset6" code="0x00c42716"/>
			<enumerator name="line preset7" code="0x00c42717"/>
			<enumerator name="line preset8" code="0x00c42718"/>
			<enumerator name="line preset9" code="0x00c42719"/>
			<enumerator name="line preset10" code="0x00c4271a"/>
			<enumerator name="line preset11" code="0x00c4271b"/>
			<enumerator name="line preset12" code="0x00c4271c"/>
			<enumerator name="line preset13" code="0x00c4271d"/>
			<enumerator name="line preset14" code="0x00c4271e"/>
			<enumerator name="line preset15" code="0x00c4271f"/>
			<enumerator name="line preset16" code="0x00c42720"/>
			<enumerator name="line preset17" code="0x00c42721"/>
			<enumerator name="line preset18" code="0x00c42722"/>
			<enumerator name="line preset19" code="0x00c42723"/>
			<enumerator name="line preset20" code="0x00c42724"/>
			<enumerator name="line preset21" code="0x00c42725"/>
		</enumeration>
		<enumeration name="MsoBackgroundStyleIndex" code="mBSI">
			<enumerator name="background unset" code="0x00c4fffe"/>
			<enumerator name="background not a preset" code="0x00c50000"/>
			<enumerator name="background preset1" code="0x00c50001"/>
			<enumerator name="background preset2" code="0x00c50002"/>
			<enumerator name="background preset3" code="0x00c50003"/>
			<enumerator name="background preset4" code="0x00c50004"/>
			<enumerator name="background preset5" code="0x00c50005"/>
			<enumerator name="background preset6" code="0x00c50006"/>
			<enumerator name="background preset7" code="0x00c50007"/>
			<enumerator name="background preset8" code="0x00c50008"/>
			<enumerator name="background preset9" code="0x00c50009"/>
			<enumerator name="background preset10" code="0x00c5000a"/>
			<enumerator name="background preset11" code="0x00c5000b"/>
			<enumerator name="background preset12" code="0x00c5000c"/>
		</enumeration>
		<enumeration name="MsoTextDirection" code="pDrT">
			<enumerator name="text direction unset" code="0x00eafffe"/>
			<enumerator name="left to right" code="0x00eb0001"/>
			<enumerator name="right to left" code="0x00eb0002"/>
		</enumeration>
		<enumeration name="MsoBulletType" code="pBtT">
			<enumerator name="bullet type unset" code="0x00e7fffe"/>
			<enumerator name="bullet type none" code="0x00e80000"/>
			<enumerator name="bullet type unnumbered" code="0x00e80001"/>
			<enumerator name="bullet type numbered" code="0x00e80002"/>
			<enumerator name="picture bullet type" code="0x00e80003"/>
		</enumeration>
		<enumeration name="MsoNumberedBulletStyle" code="pBtS">
			<enumerator name="numbered bullet style unset" code="0x00e8fffe"/>
			<enumerator name="numbered bullet style alpha lowercase period" code="0x00e90000"/>
			<enumerator name="numbered bullet style alpha uppercase period" code="0x00e90001"/>
			<enumerator name="numbered bullet style arabic right paren" code="0x00e90002"/>
			<enumerator name="numbered bullet style arabic period" code="0x00e90003"/>
			<enumerator name="numbered bullet style roman lowercase paren both" code="0x00e90004"/>
			<enumerator name="numbered bullet style roman lowercase paren right" code="0x00e90005"/>
			<enumerator name="numbered bullet style roman lowercase period" code="0x00e90006"/>
			<enumerator name="numbered bullet style roman uppercase period" code="0x00e90007"/>
			<enumerator name="numbered bullet style alpha lowercase paren both" code="0x00e90008"/>
			<enumerator name="numbered bullet style alpha lowercase paren right" code="0x00e90009"/>
			<enumerator name="numbered bullet style alpha uppercase paren both" code="0x00e9000a"/>
			<enumerator name="numbered bullet style alpha uppercase paren right" code="0x00e9000b"/>
			<enumerator name="numbered bullet style arabic paren both" code="0x00e9000c"/>
			<enumerator name="numbered bullet style arabic plain" code="0x00e9000d"/>
			<enumerator name="numbered bullet style roman uppercase paren both" code="0x00e9000e"/>
			<enumerator name="numbered bullet style roman uppercase paren right" code="0x00e9000f"/>
			<enumerator name="numbered bullet style simplified chinese plain" code="0x00e90010"/>
			<enumerator name="numbered bullet style simplified chinese period" code="0x00e90011"/>
			<enumerator name="numbered bullet style circle number plain" code="0x00e90012"/>
			<enumerator name="numbered bullet style circle number white plain" code="0x00e90013"/>
			<enumerator name="numbered bullet style circle number black plain" code="0x00e90014"/>
			<enumerator name="numbered bullet style traditional chinese plain" code="0x00e90015"/>
			<enumerator name="numbered bullet style traditional chinese period" code="0x00e90016"/>
			<enumerator name="numbered bullet style arabic alpha dash" code="0x00e90017"/>
			<enumerator name="numbered bullet style arabic abjad dash" code="0x00e90018"/>
			<enumerator name="numbered bullet style hebrew alpha dash" code="0x00e90019"/>
			<enumerator name="numbered bullet style kanji korean plain" code="0x00e9001a"/>
			<enumerator name="numbered bullet style kanji korean period" code="0x00e9001b"/>
			<enumerator name="numbered bullet style arabic DB plain" code="0x00e9001c"/>
			<enumerator name="numbered bullet style arabic DB period" code="0x00e9001d"/>
			<enumerator name="numbered bullet style thai alpha period" code="0x00e9001e"/>
			<enumerator name="numbered bullet style thai alpha paren right" code="0x00e9001f"/>
			<enumerator name="numbered bullet style thai alpha paren both" code="0x00e90020"/>
			<enumerator name="numbered bullet style thai number period" code="0x00e90021"/>
			<enumerator name="numbered bullet style thai number paren right" code="0x00e90022"/>
			<enumerator name="numbered bullet style thai paren both" code="0x00e90023"/>
			<enumerator name="numbered bullet style hindi alpha period" code="0x00e90024"/>
			<enumerator name="numbered bullet style hindi number period" code="0x00e90025"/>
			<enumerator name="numbered bullet style kanji simpified chinese DB period" code="0x00e90026"/>
			<enumerator name="numbered bullet style hindi number paren right" code="0x00e90027"/>
			<enumerator name="numbered bullet style hindi alpha1 period" code="0x00e90028"/>
		</enumeration>
		<enumeration name="MsoTabStopType" code="pTSp">
			<enumerator name="tabstop unset" code="0x00f4fffe"/>
			<enumerator name="tabstop left" code="0x00f50001"/>
			<enumerator name="tabstop center" code="0x00f50002"/>
			<enumerator name="tabstop right" code="0x00f50003"/>
			<enumerator name="tabstop decimal" code="0x00f50004"/>
		</enumeration>
		<enumeration name="MsoReflectionType" code="mRfT">
			<enumerator name="reflection unset" code="0x03e9fffe"/>
			<enumerator name="reflection type none" code="0x03ea0000"/>
			<enumerator name="reflection type1" code="0x03ea0001"/>
			<enumerator name="reflection type2" code="0x03ea0002"/>
			<enumerator name="reflection type3" code="0x03ea0003"/>
			<enumerator name="reflection type4" code="0x03ea0004"/>
			<enumerator name="reflection type5" code="0x03ea0005"/>
			<enumerator name="reflection type6" code="0x03ea0006"/>
			<enumerator name="reflection type7" code="0x03ea0007"/>
			<enumerator name="reflection type8" code="0x03ea0008"/>
			<enumerator name="reflection type9" code="0x03ea0009"/>
		</enumeration>
		<enumeration name="MsoTextureAlignment" code="mTtA">
			<enumerator name="texture unset" code="0x03eafffe"/>
			<enumerator name="texture top left" code="0x03eb0000"/>
			<enumerator name="texture top" code="0x03eb0001"/>
			<enumerator name="texture top right" code="0x03eb0002"/>
			<enumerator name="texture left" code="0x03eb0003"/>
			<enumerator name="texture center" code="0x03eb0004"/>
			<enumerator name="texture right" code="0x03eb0005"/>
			<enumerator name="texture bottom left" code="0x03eb0006"/>
			<enumerator name="texture botton" code="0x03eb0007"/>
			<enumerator name="texture bottom right" code="0x03eb0008"/>
		</enumeration>
		<enumeration name="MsoBaselineAlignment" code="pBlA">
			<enumerator name="text baseline alignment unset" code="0x03ebfffe"/>
			<enumerator name="text baseline align baseline" code="0x03ec0001"/>
			<enumerator name="text baseline align top" code="0x03ec0002"/>
			<enumerator name="text baseline align center" code="0x03ec0003"/>
			<enumerator name="text baseline align east asian50" code="0x03ec0004"/>
			<enumerator name="text baseline align automatic" code="0x03ec0005"/>
		</enumeration>
		<enumeration name="MsoClipboardFormat" code="mCbF">
			<enumerator name="clipboard format unset" code="0x03ecfffe"/>
			<enumerator name="native clipboard format" code="0x03ed0001"/>
			<enumerator name="HTMl clipboard format" code="0x03ed0002"/>
			<enumerator name="RTF clipboard format" code="0x03ed0003"/>
			<enumerator name="plain text clipboard format" code="0x03ed0004"/>
		</enumeration>
		<enumeration name="MsoTextRangeInsertPosition" code="mTiP">
			<enumerator name="insert before" code="0x03ee0000"/>
			<enumerator name="insert after" code="0x03ee0001"/>
		</enumeration>
		<enumeration name="MsoPictureType" code="mPiT">
			<enumerator name="save as default" code="0x03f2fffe"/>
			<enumerator name="save as PNG file" code="0x03f30000"/>
			<enumerator name="save as BMP file" code="0x03f30001"/>
			<enumerator name="save as GIF file" code="0x03f30002"/>
			<enumerator name="save as JPG file" code="0x03f30003"/>
			<enumerator name="save as PDF file" code="0x03f30004"/>
		</enumeration>
		<enumeration name="MsoPictureEffectType" code="mPeT">
			<enumerator name="no effect" code="0x03f40000"/>
			<enumerator name="effect background removal" code="0x03f40001"/>
			<enumerator name="effect blur" code="0x03f40002"/>
			<enumerator name="effect brightness contrast" code="0x03f40003"/>
			<enumerator name="effect cement" code="0x03f40004"/>
			<enumerator name="effect crisscross etching" code="0x03f40005"/>
			<enumerator name="effect chalk sketch" code="0x03f40006"/>
			<enumerator name="effect color temperature" code="0x03f40007"/>
			<enumerator name="effect cutout" code="0x03f40008"/>
			<enumerator name="effect film grain" code="0x03f40009"/>
			<enumerator name="effect glass" code="0x03f4000a"/>
			<enumerator name="effect glow diffused" code="0x03f4000b"/>
			<enumerator name="effect glow edges" code="0x03f4000c"/>
			<enumerator name="effect light screen" code="0x03f4000d"/>
			<enumerator name="effect line drawing" code="0x03f4000e"/>
			<enumerator name="effect marker" code="0x03f4000f"/>
			<enumerator name="effect mosiaic bubbles" code="0x03f40010"/>
			<enumerator name="effect paint brush" code="0x03f40011"/>
			<enumerator name="effect paint strokes" code="0x03f40012"/>
			<enumerator name="effect pastels smooth" code="0x03f40013"/>
			<enumerator name="effect pencil grayscale" code="0x03f40014"/>
			<enumerator name="effect pencil sketch" code="0x03f40015"/>
			<enumerator name="effect photocopy" code="0x03f40016"/>
			<enumerator name="effect plastic wrap" code="0x03f40017"/>
			<enumerator name="effect saturation" code="0x03f40018"/>
			<enumerator name="effect sharpen soften" code="0x03f40019"/>
			<enumerator name="effect texturizer" code="0x03f4001a"/>
			<enumerator name="effect watercolor sponge" code="0x03f4001b"/>
		</enumeration>
		<enumeration name="MsoSegmentType" code="mSgT">
			<enumerator name="line" code="0x008f0000"/>
			<enumerator name="curve" code="0x008f0001"/>
		</enumeration>
		<enumeration name="MsoEditingType" code="mEdT">
			<enumerator name="auto" code="0x00900000"/>
			<enumerator name="corner" code="0x00900001"/>
			<enumerator name="smooth" code="0x00900002"/>
			<enumerator name="symmetric" code="0x00900003"/>
		</enumeration>
		<enumeration name="MsoSmartArtNodePosition" code="SANP">
			<enumerator name="default node position" code="0x03f50001"/>
			<enumerator name="after node" code="0x03f50002"/>
			<enumerator name="before node" code="0x03f50003"/>
			<enumerator name="above node" code="0x03f50004"/>
			<enumerator name="below node" code="0x03f50005"/>
		</enumeration>
		<enumeration name="MsoSmartArtNodeType" code="SANT">
			<enumerator name="default node" code="0x03f60001"/>
			<enumerator name="assistant node" code="0x03f60002"/>
		</enumeration>
		<enumeration name="MsoOrgChartLayoutType" code="mOCT">
			<enumerator name="org chart layout unset" code="0x03f6fffe"/>
			<enumerator name="org chart layout standard" code="0x03f70001"/>
			<enumerator name="org chart layout both hanging" code="0x03f70002"/>
			<enumerator name="org chart layout left hanging" code="0x03f70003"/>
			<enumerator name="org chart layout right hanging" code="0x03f70004"/>
			<enumerator name="org chart layout default" code="0x03f70005"/>
		</enumeration>
		<enumeration name="MsoAlignCmd" code="mAlC">
			<enumerator name="align lefts" code="0x00000000"/>
			<enumerator name="align centers" code="0x00000001"/>
			<enumerator name="align rights" code="0x00000002"/>
			<enumerator name="align tops" code="0x00000003"/>
			<enumerator name="align middles" code="0x00000004"/>
			<enumerator name="align bottoms" code="0x00000005"/>
		</enumeration>
		<enumeration name="MsoDistributeCmd" code="mDsC">
			<enumerator name="distribute horizontally" code="0x00000000"/>
			<enumerator name="distribute vertically" code="0x00000001"/>
		</enumeration>
		<enumeration name="MsoOrientation" code="mOrT">
			<enumerator name="orientation unset" code="0x008cfffe"/>
			<enumerator name="horizontal orientation" code="0x008d0001"/>
			<enumerator name="vertical orientation" code="0x008d0002"/>
		</enumeration>
		<enumeration name="MsoZOrderCmd" code="mZoC">
			<enumerator name="bring shape to front" code="0x00700000"/>
			<enumerator name="send shape to back" code="0x00700001"/>
			<enumerator name="bring shape forward" code="0x00700002"/>
			<enumerator name="send shape backward" code="0x00700003"/>
			<enumerator name="bring shape in front of text" code="0x00700004"/>
			<enumerator name="send shape behind text" code="0x00700005"/>
		</enumeration>
		<enumeration name="MsoScriptLanguage" code="mScL">
			<enumerator name="bring shape to front" code="0x006f0001"/>
			<enumerator name="send shape to back" code="0x006f0002"/>
			<enumerator name="bring shape forward" code="0x006f0003"/>
			<enumerator name="send shape backward" code="0x006f0004"/>
		</enumeration>
		<enumeration name="MsoFlipCmd" code="mFlC">
			<enumerator name="flip horizontal" code="0x00710000"/>
			<enumerator name="flip vertical" code="0x00710001"/>
		</enumeration>
		<enumeration name="MsoTriState" code="mTri">
			<enumerator name="true" code="0x00a0ffff"/>
			<enumerator name="false" code="0x00a10000"/>
			<enumerator name="C true" code="0x00a10001"/>
			<enumerator name="toggle" code="0x00a0fffd"/>
			<enumerator name="tri state unset" code="0x00a0fffe"/>
		</enumeration>
		<enumeration name="MsoBlackWhiteMode" code="mB&amp;W">
			<enumerator name="black and white unset" code="0x00acfffe"/>
			<enumerator name="black and white mode automatic" code="0x00ad0001"/>
			<enumerator name="black and white mode gray scale" code="0x00ad0002"/>
			<enumerator name="black and white mode light gray scale" code="0x00ad0003"/>
			<enumerator name="black and white mode inverse gray scale" code="0x00ad0004"/>
			<enumerator name="black and white mode gray outline" code="0x00ad0005"/>
			<enumerator name="black and white mode black text and line" code="0x00ad0006"/>
			<enumerator name="black and white mode high contrast" code="0x00ad0007"/>
			<enumerator name="black and white mode black" code="0x00ad0008"/>
			<enumerator name="black and white mode white" code="0x00ad0009"/>
			<enumerator name="black and white mode dont show" code="0x00ad000a"/>
		</enumeration>
		<enumeration name="MsoBarPosition" code="mBPS">
			<enumerator name="bar left" code="0x00720000"/>
			<enumerator name="bar top" code="0x00720001"/>
			<enumerator name="bar right" code="0x00720002"/>
			<enumerator name="bar bottom" code="0x00720003"/>
			<enumerator name="bar floating" code="0x00720004"/>
			<enumerator name="bar pop up" code="0x00720005"/>
			<enumerator name="bar menu" code="0x00720006"/>
		</enumeration>
		<enumeration name="MsoBarProtection" code="mBPt">
			<enumerator name="no protection" code="0x00730000"/>
			<enumerator name="no customize" code="0x00730001"/>
			<enumerator name="no resize" code="0x00730002"/>
			<enumerator name="no move" code="0x00730004"/>
			<enumerator name="no change visible" code="0x00730008"/>
			<enumerator name="no change dock" code="0x00730010"/>
			<enumerator name="no vertical dock" code="0x00730020"/>
			<enumerator name="no horizontal dock" code="0x00730040"/>
		</enumeration>
		<enumeration name="MsoBarType" code="mBTY">
			<enumerator name="normal command bar" code="0x00740000"/>
			<enumerator name="menubar command bar" code="0x00740001"/>
			<enumerator name="popup command bar" code="0x00740002"/>
		</enumeration>
		<enumeration name="MsoControlType" code="mCLT">
			<enumerator name="control custom" code="0x00750000"/>
			<enumerator name="control button" code="0x00750001"/>
			<enumerator name="control edit" code="0x00750002"/>
			<enumerator name="control drop down" code="0x00750003"/>
			<enumerator name="control combobox" code="0x00750004"/>
			<enumerator name="button drop down" code="0x00750005"/>
			<enumerator name="split drop down" code="0x00750006"/>
			<enumerator name="OCX drop down" code="0x00750007"/>
			<enumerator name="generic drop down" code="0x00750008"/>
			<enumerator name="graphic drop down" code="0x00750009"/>
			<enumerator name="control popup" code="0x0075000a"/>
			<enumerator name="graphic Popup" code="0x0075000b"/>
			<enumerator name="button popup" code="0x0075000c"/>
			<enumerator name="split button popup" code="0x0075000d"/>
			<enumerator name="split button MRU popup" code="0x0075000e"/>
			<enumerator name="control label" code="0x0075000f"/>
			<enumerator name="expanding grid" code="0x00750010"/>
			<enumerator name="split expanding grid" code="0x00750011"/>
			<enumerator name="control grid" code="0x00750012"/>
			<enumerator name="control gauge" code="0x00750013"/>
			<enumerator name="graphic combobox" code="0x00750014"/>
			<enumerator name="control pane" code="0x00750015"/>
			<enumerator name="active X" code="0x00750016"/>
			<enumerator name="control group" code="0x00750017"/>
			<enumerator name="control tab" code="0x00750018"/>
			<enumerator name="control spinner" code="0x00750019"/>
		</enumeration>
		<enumeration name="MsoButtonState" code="mBns">
			<enumerator name="button state up" code="0x00760000"/>
			<enumerator name="button state down" code="0x0075ffff"/>
			<enumerator name="button state unset" code="0x00760002"/>
		</enumeration>
		<enumeration name="MsoControlOLEUsage" code="mcOu">
			<enumerator name="neither" code="0x00770000"/>
			<enumerator name="server" code="0x00770001"/>
			<enumerator name="client" code="0x00770002"/>
			<enumerator name="both" code="0x00770003"/>
		</enumeration>
		<enumeration name="MsoButtonStyle" code="mBTs">
			<enumerator name="button automatic" code="0x00780000"/>
			<enumerator name="button icon" code="0x00780001"/>
			<enumerator name="button caption" code="0x00780002"/>
			<enumerator name="button icon and caption" code="0x00780003"/>
		</enumeration>
		<enumeration name="MsoComboStyle" code="mXcb">
			<enumerator name="combobox style normal" code="0x00790000"/>
			<enumerator name="combobox style label" code="0x00790001"/>
		</enumeration>
		<enumeration name="MsoMenuAnimation" code="mMNA">
			<enumerator name="None" code="0x007b0000"/>
			<enumerator name="Random" code="0x007b0001"/>
			<enumerator name="Unfold" code="0x007b0002"/>
			<enumerator name="Slide" code="0x007b0003"/>
		</enumeration>
		<enumeration name="MsoHyperlinkType" code="mHlT">
			<enumerator name="hyperlink type text range" code="0x00960000"/>
			<enumerator name="hyperlink type shape" code="0x00960001"/>
			<enumerator name="hyperlink type inline shape" code="0x00960002"/>
		</enumeration>
		<enumeration name="MsoExtraInfoMethod" code="mXiM">
			<enumerator name="append string" code="0x00ae0000"/>
			<enumerator name="post string" code="0x00ae0001"/>
		</enumeration>
		<enumeration name="MsoAnimationType" code="mANT">
			<enumerator name="idle" code="0x007c0001"/>
			<enumerator name="greeting" code="0x007c0002"/>
			<enumerator name="goodbye" code="0x007c0003"/>
			<enumerator name="begin speaking" code="0x007c0004"/>
			<enumerator name="character success major" code="0x007c0006"/>
			<enumerator name="get attention major" code="0x007c000b"/>
			<enumerator name="get attention minor" code="0x007c000c"/>
			<enumerator name="searching" code="0x007c000d"/>
			<enumerator name="printing" code="0x007c0012"/>
			<enumerator name="gesture right" code="0x007c0013"/>
			<enumerator name="writing noting something" code="0x007c0016"/>
			<enumerator name="working at something" code="0x007c0017"/>
			<enumerator name="thinking" code="0x007c0018"/>
			<enumerator name="sending mail" code="0x007c0019"/>
			<enumerator name="listens to computer" code="0x007c001a"/>
			<enumerator name="disappear" code="0x007c001f"/>
			<enumerator name="appear" code="0x007c0020"/>
			<enumerator name="get artsy" code="0x007c0064"/>
			<enumerator name="get techy" code="0x007c0065"/>
			<enumerator name="get wizardy" code="0x007c0066"/>
			<enumerator name="checking something" code="0x007c0067"/>
			<enumerator name="look down" code="0x007c0068"/>
			<enumerator name="look down left" code="0x007c0069"/>
			<enumerator name="look down right" code="0x007c006a"/>
			<enumerator name="look left" code="0x007c006b"/>
			<enumerator name="look right" code="0x007c006c"/>
			<enumerator name="look up" code="0x007c006d"/>
			<enumerator name="look up left" code="0x007c006e"/>
			<enumerator name="look up right" code="0x007c006f"/>
			<enumerator name="saving" code="0x007c0070"/>
			<enumerator name="gesture down" code="0x007c0071"/>
			<enumerator name="gesture left" code="0x007c0072"/>
			<enumerator name="gesture up" code="0x007c0073"/>
			<enumerator name="empty trash" code="0x007c0074"/>
		</enumeration>
		<enumeration name="MsoButtonSetType" code="mBSt">
			<enumerator name="button none" code="0x007d0000"/>
			<enumerator name="button ok" code="0x007d0001"/>
			<enumerator name="button cancel" code="0x007d0002"/>
			<enumerator name="buttons ok cancel" code="0x007d0003"/>
			<enumerator name="buttons yes no" code="0x007d0004"/>
			<enumerator name="buttons yes no cancel" code="0x007d0005"/>
			<enumerator name="buttons back close" code="0x007d0006"/>
			<enumerator name="buttons next close" code="0x007d0007"/>
			<enumerator name="buttons back next close" code="0x007d0008"/>
			<enumerator name="buttons retry cancel" code="0x007d0009"/>
			<enumerator name="buttons abort retry ignore" code="0x007d000a"/>
			<enumerator name="buttons search close" code="0x007d000b"/>
			<enumerator name="buttons back next snooze" code="0x007d000c"/>
			<enumerator name="buttons tips options close" code="0x007d000d"/>
			<enumerator name="buttons yes all no cancel" code="0x007d000e"/>
		</enumeration>
		<enumeration name="MsoIconType" code="mIct">
			<enumerator name="icon none" code="0x007e0000"/>
			<enumerator name="icon application" code="0x007e0001"/>
			<enumerator name="icon alert" code="0x007e0002"/>
			<enumerator name="icon tip" code="0x007e0003"/>
			<enumerator name="icon alert critical" code="0x007e0065"/>
			<enumerator name="icon alert warning" code="0x007e0067"/>
			<enumerator name="icon alert info" code="0x007e0068"/>
		</enumeration>
		<enumeration name="MsoWizardActType" code="mWAt">
			<enumerator name="Inactive" code="0x00820000"/>
			<enumerator name="Active" code="0x00820001"/>
			<enumerator name="Suspend" code="0x00820002"/>
			<enumerator name="Resume" code="0x00820003"/>
		</enumeration>
		<enumeration name="MsoDocProperties" code="meDP">
			<enumerator name="property type number" code="0x00a20001"/>
			<enumerator name="property type boolean" code="0x00a20002"/>
			<enumerator name="property type date" code="0x00a20003"/>
			<enumerator name="property type string" code="0x00a20004"/>
			<enumerator name="property type float" code="0x00a20005"/>
		</enumeration>
		<enumeration name="MsoAutomationSecurity" code="mASc">
			<enumerator name="msoAutomationSecurityLow" code="0x00a30001"/>
			<enumerator name="msoAutomationSecurityByUI" code="0x00a30002"/>
			<enumerator name="msoAutomationSecurityForceDisable" code="0x00a30003"/>
		</enumeration>
		<enumeration name="MsoScreenSize" code="mSsz">
			<enumerator name="resolution544x376" code="0x00840000"/>
			<enumerator name="resolution640x480" code="0x00840001"/>
			<enumerator name="resolution720x512" code="0x00840002"/>
			<enumerator name="resolution800x600" code="0x00840003"/>
			<enumerator name="resolution1024x768" code="0x00840004"/>
			<enumerator name="resolution1152x882" code="0x00840005"/>
			<enumerator name="resolution1152x900" code="0x00840006"/>
			<enumerator name="resolution1280x1024" code="0x00840007"/>
			<enumerator name="resolution1600x1200" code="0x00840008"/>
			<enumerator name="resolution1800x1440" code="0x00840009"/>
			<enumerator name="resolution1920x1200" code="0x0084000a"/>
		</enumeration>
		<enumeration name="MsoCharacterSet" code="mChS">
			<enumerator name="Arabic character set" code="0x00850001"/>
			<enumerator name="Cyrillic character set" code="0x00850002"/>
			<enumerator name="English character set" code="0x00850003"/>
			<enumerator name="Greek character set" code="0x00850004"/>
			<enumerator name="Hebrew character set" code="0x00850005"/>
			<enumerator name="Japanese character set" code="0x00850006"/>
			<enumerator name="Korean character set" code="0x00850007"/>
			<enumerator name="Multilingual Unicode character set" code="0x00850008"/>
			<enumerator name="Simplified Chinese character set" code="0x00850009"/>
			<enumerator name="Thai character set" code="0x0085000a"/>
			<enumerator name="Traditional Chinese character set" code="0x0085000b"/>
			<enumerator name="Vietnamese character set" code="0x0085000c"/>
		</enumeration>
		<enumeration name="MsoEncoding" code="mtEn">
			<enumerator name="encoding Thai" code="0x008b036a"/>
			<enumerator name="encoding Japanese ShiftJIS" code="0x008b03a4"/>
			<enumerator name="encoding simplified Chinese" code="0x008b03a8"/>
			<enumerator name="encoding Korean" code="0x008b03b5"/>
			<enumerator name="encoding Big5 traditional Chinese" code="0x008b03b6"/>
			<enumerator name="encoding little endian" code="0x008b04b0"/>
			<enumerator name="encoding big endian" code="0x008b04b1"/>
			<enumerator name="encoding central European" code="0x008b04e2"/>
			<enumerator name="encoding Cyrillic" code="0x008b04e3"/>
			<enumerator name="encoding Western" code="0x008b04e4"/>
			<enumerator name="encoding Greek" code="0x008b04e5"/>
			<enumerator name="encoding Turkish" code="0x008b04e6"/>
			<enumerator name="encoding Hebrew" code="0x008b04e7"/>
			<enumerator name="encoding Arabic" code="0x008b04e8"/>
			<enumerator name="encoding Baltic" code="0x008b04e9"/>
			<enumerator name="encoding Vietnamese" code="0x008b04ea"/>
			<enumerator name="encoding ISO88591 Latin1" code="0x008b6faf"/>
			<enumerator name="encoding ISO88592 central Europe" code="0x008b6fb0"/>
			<enumerator name="encoding ISO88593 Latin3" code="0x008b6fb1"/>
			<enumerator name="encoding ISO88594 Baltic" code="0x008b6fb2"/>
			<enumerator name="encoding ISO88595 Cyrillic" code="0x008b6fb3"/>
			<enumerator name="encoding ISO88596 Arabic" code="0x008b6fb4"/>
			<enumerator name="encoding ISO88597 Greek" code="0x008b6fb5"/>
			<enumerator name="encoding ISO88598 Hebrew" code="0x008b6fb6"/>
			<enumerator name="encoding ISO88599 Turkish" code="0x008b6fb7"/>
			<enumerator name="encoding ISO885915 Latin9" code="0x008b6fbd"/>
			<enumerator name="encoding ISO2022 Japanese no half width Katakana" code="0x008bc42c"/>
			<enumerator name="encoding ISO2022 Japanese JISX02021984" code="0x008bc42d"/>
			<enumerator name="encoding ISO2022 Japanese JISX02011989" code="0x008bc42e"/>
			<enumerator name="encoding ISO2022KR" code="0x008bc431"/>
			<enumerator name="encoding ISO2022CN traditional Chinese" code="0x008bc433"/>
			<enumerator name="encoding ISO2022CN simplified Chinese" code="0x008bc435"/>
			<enumerator name="encoding Mac Roman" code="0x008b2710"/>
			<enumerator name="encoding Mac Japanese" code="0x008b2711"/>
			<enumerator name="encoding Mac traditional Chinese" code="0x008b2712"/>
			<enumerator name="encoding Mac Korean" code="0x008b2713"/>
			<enumerator name="encoding Mac Arabic" code="0x008b2714"/>
			<enumerator name="encoding Mac Hebrew" code="0x008b2715"/>
			<enumerator name="encoding Mac Greek1" code="0x008b2716"/>
			<enumerator name="encoding Mac Cyrillic" code="0x008b2717"/>
			<enumerator name="encoding Mac simplified Chinese GB2312" code="0x008b2718"/>
			<enumerator name="encoding Mac Romania" code="0x008b271a"/>
			<enumerator name="encoding Mac Ukraine" code="0x008b2721"/>
			<enumerator name="encoding Mac Latin2" code="0x008b272d"/>
			<enumerator name="encoding Mac Icelandic" code="0x008b275f"/>
			<enumerator name="encoding Mac Turkish" code="0x008b2761"/>
			<enumerator name="encoding Mac Croatia" code="0x008b2762"/>
			<enumerator name="encoding EBCDIC US Canada" code="0x008b0025"/>
			<enumerator name="encoding EBCDIC International" code="0x008b01f4"/>
			<enumerator name="encoding EBCDIC multilingual ROECE Latin2" code="0x008b0366"/>
			<enumerator name="encoding EBCDIC Greek modern" code="0x008b036b"/>
			<enumerator name="encoding EBCDIC Turkish Latin5" code="0x008b0402"/>
			<enumerator name="encoding EBCDIC Germany" code="0x008b4f31"/>
			<enumerator name="encoding EBCDIC Denmark Norway" code="0x008b4f35"/>
			<enumerator name="encoding EBCDIC Finland Sweden" code="0x008b4f36"/>
			<enumerator name="encoding EBCDIC Italy" code="0x008b4f38"/>
			<enumerator name="encoding EBCDIC Latin America Spain" code="0x008b4f3c"/>
			<enumerator name="encoding EBCDIC United Kingdom" code="0x008b4f3d"/>
			<enumerator name="encoding EBCDIC Japanese Katakana extended" code="0x008b4f42"/>
			<enumerator name="encoding EBCDIC France" code="0x008b4f49"/>
			<enumerator name="encoding EBCDIC Arabic" code="0x008b4fc4"/>
			<enumerator name="encoding EBCDIC Greek" code="0x008b4fc7"/>
			<enumerator name="encoding EBCDIC Hebrew" code="0x008b4fc8"/>
			<enumerator name="encoding EBCDIC Korean extended" code="0x008b5161"/>
			<enumerator name="encoding EBCDIC Thai" code="0x008b5166"/>
			<enumerator name="encoding EBCDIC Icelandic" code="0x008b5187"/>
			<enumerator name="encoding EBCDIC Turkish" code="0x008b51a9"/>
			<enumerator name="encoding EBCDIC Russian" code="0x008b5190"/>
			<enumerator name="encoding EBCDIC Serbian Bulgarian" code="0x008b5221"/>
			<enumerator name="encoding EBCDIC Japanese Katakana extended and Japanese" code="0x008bc6f2"/>
			<enumerator name="encoding EBCDIC US Canada and Japanese" code="0x008bc6f3"/>
			<enumerator name="encoding EBCDIC extended and Korean" code="0x008bc6f5"/>
			<enumerator name="encoding EBCDIC simplified Chinese extended and simplified Chinese" code="0x008bc6f7"/>
			<enumerator name="encoding EBCDIC US Canada and traditional Chinese" code="0x008bc6f9"/>
			<enumerator name="encoding EBCDIC Japanese Latin extended and Japanese" code="0x008bc6fb"/>
			<enumerator name="encoding OEM United States" code="0x008b01b5"/>
			<enumerator name="encoding OEM Greek" code="0x008b02e1"/>
			<enumerator name="encoding OEM Baltic" code="0x008b0307"/>
			<enumerator name="encoding OEM multilingual LatinI" code="0x008b0352"/>
			<enumerator name="encoding OEM multilingual LatinII" code="0x008b0354"/>
			<enumerator name="encoding OEM Cyrillic" code="0x008b0357"/>
			<enumerator name="encoding OEM Turkish" code="0x008b0359"/>
			<enumerator name="encoding OEM Portuguese" code="0x008b035c"/>
			<enumerator name="encoding OEM Icelandic" code="0x008b035d"/>
			<enumerator name="encoding OEM Hebrew" code="0x008b035e"/>
			<enumerator name="encoding OEM Canadian French" code="0x008b035f"/>
			<enumerator name="encoding OEM Arabic" code="0x008b0360"/>
			<enumerator name="encoding OEM Nordic" code="0x008b0361"/>
			<enumerator name="encoding OEM CyrillicII" code="0x008b0362"/>
			<enumerator name="encoding OEM modern Greek" code="0x008b0365"/>
			<enumerator name="encoding EUC Japanese" code="0x008bcadc"/>
			<enumerator name="encoding EUC Chinese simplified Chinese" code="0x008bcae0"/>
			<enumerator name="encoding EUC Korean" code="0x008bcaed"/>
			<enumerator name="encoding EUC Taiwanese traditional Chinese" code="0x008bcaee"/>
			<enumerator name="encoding Devanagari" code="0x008bdeaa"/>
			<enumerator name="encoding Bengali" code="0x008bdeab"/>
			<enumerator name="encoding Tamil" code="0x008bdeac"/>
			<enumerator name="encoding Telugu" code="0x008bdead"/>
			<enumerator name="encoding Assamese" code="0x008bdeae"/>
			<enumerator name="encoding Oriya" code="0x008bdeaf"/>
			<enumerator name="encoding Kannada" code="0x008bdeb0"/>
			<enumerator name="encoding Malayalam" code="0x008bdeb1"/>
			<enumerator name="encoding Gujarati" code="0x008bdeb2"/>
			<enumerator name="encoding Punjabi" code="0x008bdeb3"/>
			<enumerator name="encoding Arabic ASMO" code="0x008b02c4"/>
			<enumerator name="encoding Arabic transparent ASMO" code="0x008b02d0"/>
			<enumerator name="encoding Korean Johab" code="0x008b0551"/>
			<enumerator name="encoding Taiwan CNS" code="0x008b4e20"/>
			<enumerator name="encoding Taiwan TCA" code="0x008b4e21"/>
			<enumerator name="encoding Taiwan Eten" code="0x008b4e22"/>
			<enumerator name="encoding Taiwan IBM5550" code="0x008b4e23"/>
			<enumerator name="encoding Taiwan teletext" code="0x008b4e24"/>
			<enumerator name="encoding Taiwan Wang" code="0x008b4e25"/>
			<enumerator name="encoding IA5IRV" code="0x008b4e89"/>
			<enumerator name="encoding IA5 German" code="0x008b4e8a"/>
			<enumerator name="encoding IA5 Swedish" code="0x008b4e8b"/>
			<enumerator name="encoding IA5 Norwegian" code="0x008b4e8c"/>
			<enumerator name="encoding US ASCII" code="0x008b4e9f"/>
			<enumerator name="encoding T61" code="0x008b4f25"/>
			<enumerator name="encoding ISO6937 nonspacing accent" code="0x008b4f2d"/>
			<enumerator name="encoding KOI8R" code="0x008b5182"/>
			<enumerator name="encoding Ext alpha lowercase" code="0x008b5223"/>
			<enumerator name="encoding KOI8U" code="0x008b556a"/>
			<enumerator name="encoding Europa3" code="0x008b7149"/>
			<enumerator name="encoding HZGB simplified Chinese" code="0x008bcec8"/>
			<enumerator name="encoding UTF7" code="0x008bfde8"/>
			<enumerator name="encoding UTF8" code="0x008bfde9"/>
		</enumeration>
		<enumeration name="reset" code="4000">
			<enumerator name="command bar" code="msCB"/>
			<enumerator name="command bar control" code="mCBC"/>
		</enumeration>
	</suite>
	<suite name="Microsoft Excel Suite" code="smXL" description="Excel specific classes and commands">
		<command name="Excel comment text" code="smXLXCmT" description="Returns or sets the text of the comment">
			<direct-parameter type="Excel comment"/>
			<parameter name="text" code="ctxt" type="text" optional="yes" description="The next text for the comment."/>
			<parameter name="start" code="5144" type="integer" optional="yes" description="The starting point within the existing text that the next test should be placed."/>
			<parameter name="over write" code="5321" type="boolean" optional="yes" description="Set to true to over write the existing text of the comment with the new text."/>
			<result type="text" description="The text of the comment."/>
		</command>
		<command name="Excel repeat" code="smXL1300" description="Repeats the last user-interface action."/>
		<command name="Run InProc Tests" code="smXLRIt8" description="Run InProc Tests.">
			<direct-parameter type="specifier"/>
			<parameter name="command" code="5016" type="text" description="The command specifies test cases to run."/>
			<result type="boolean"/>
		</command>
		<command name="accept all changes" code="smXL1861" description="Accepts all changes in the specified shared workbook.">
			<direct-parameter type="workbook"/>
			<parameter name="when" code="5298" type="text" optional="yes" description="Specifies when all the changes are accepted."/>
			<parameter name="who" code="5299" type="text" optional="yes" description="Specifies by whom all the changes are accepted."/>
			<parameter name="where" code="5260" type="text" optional="yes" description="Specifies where all the changes are accepted."/>
		</command>
		<command name="activate next" code="smXL1102" description="Activates the current window, sends it to the back of the window z-order, then activates the next window according to the z-order.">
			<direct-parameter type="window"/>
		</command>
		<command name="activate object" code="smXLxACT" description="Make the object active">
			<direct-parameter type="4001"/>
		</command>
		<command name="activate previous" code="smXL1103" description="Activates the specified window and then activates the window at the back of the window z-order.">
			<direct-parameter type="window"/>
		</command>
		<command name="add chart autoformat" code="smXL1199" description="Adds a custom chart autoformat to the list of available chart autoformats.">
			<parameter name="chart" code="5075" type="chart" description="A chart that contains the format that will be applied when the new chart autoformat is applied."/>
			<parameter name="name" code="pnam" type="text" description="The name of the autoformat."/>
			<parameter name="description" code="5076" type="text" optional="yes" description="A description of the custom autoformat."/>
		</command>
		<command name="add colorstop" code="smXL2546" description="Adds ColorStop object to the ColorStops object.">
			<direct-parameter type="colorstops"/>
			<parameter name="position" code="posn" type="real" description="Represents the position in which to apply the ColorStop."/>
			<result type="colorstop"/>
		</command>
		<command name="add custom list" code="smXL1200" description="Adds a custom list for custom autofill and/or custom sort.">
			<parameter name="list array" code="5077" type="XLCustomListType" description="Specifies the source data, as either an array of strings or a range object."/>
			<parameter name="by row" code="5078" type="boolean" optional="yes" description="Only used if list array is a range object. true to create a custom list from each row in the range. false to create a custom list from each column in the range."/>
		</command>
		<command name="add data field" code="smXLCJ09" description="Adds a data field to a PivotTable report.">
			<direct-parameter type="pivot table"/>
			<parameter name="field" code="6029" type="null" description="The unique field on the server."/>
			<parameter name="caption" code="6030" type="text" optional="yes" description="The label used in the PivotTable report to identify this data field."/>
			<parameter name="function" code="6031" type="text" optional="yes" description="The function performed in the added data field."/>
			<result type="pivot field"/>
		</command>
		<command name="add data validation" code="smXL2168" description="Adds data validation to the specified range.">
			<direct-parameter type="validation"/>
			<parameter name="type" code="5103" type="XlDVType" description="The validation type."/>
			<parameter name="alert style" code="5327" type="XlDVAlertStyle" optional="yes" description="The validation alert style."/>
			<parameter name="operator" code="2120" type="XlFormatConditionOperator" optional="yes" description="The data validation operator."/>
			<parameter name="formula1" code="2121" type="text" optional="yes" description="The first part of the data validation equation."/>
			<parameter name="formula2" code="2122" type="text" optional="yes" description="The second part of the data validation when operator is operator between or operator not between, otherwise, this argument is ignored."/>
		</command>
		<command name="add fields to pivot table" code="smXL1890" description="Adds row, column, and page fields to a pivot table.">
			<direct-parameter type="pivot table"/>
			<parameter name="row fields" code="5307" optional="yes" description="Specifies a list of pivot field names to be added as rows. The list elements are strings.">
				<type type="text" list="yes"/>
			</parameter>
			<parameter name="column fields" code="5308" optional="yes" description="Specifies a list of pivot field names to be added as columns. The list elements are strings.">
				<type type="text" list="yes"/>
			</parameter>
			<parameter name="page fields" code="5309" optional="yes" description="Specifies a list of pivot field names to be added as pages. The list elements are strings.">
				<type type="text" list="yes"/>
			</parameter>
			<parameter name="add to table" code="5310" type="boolean" optional="yes" description="Set to true to add the fields to the pivot table, none of the existing fields are replaced. False to replace existing fields with the new fields. The default value is false."/>
		</command>
		<command name="add item to list" code="smXLXAIL" description="Adds a string to the list control">
			<direct-parameter type="4016"/>
			<parameter name="item text" code="DITx" type="text" description="The string that will be added."/>
			<parameter name="entry_index" code="MSix" type="integer" optional="yes" description="The position in the list to add the string."/>
		</command>
		<command name="add member property field" code="smXLCK97" description="Adds a member property field to the display for the cube field.">
			<direct-parameter type="cube field"/>
			<parameter name="property" code="6062" type="text" description="The unique name of the member property."/>
			<parameter name="property order" code="6063" type="text" optional="yes" description="Sets the PropertyOrder property value for a CubeField object."/>
			<parameter name="property displayed in" code="6064" type="XlPropertyDisplayedIn" optional="yes"/>
		</command>
		<command name="add page item" code="smXLCK24" description="Adds an additional item to a multiple item page field.">
			<direct-parameter type="pivot field"/>
			<parameter name="item" code="6053" type="text" description="Source name of a PivotItem object, corresponding to the specific Online Analytical Processing member unique name."/>
			<parameter name="clear list" code="6054" type="text" optional="yes" description="If False, adds a page item to the existing list. If True, deletes all current items and adds Item."/>
		</command>
		<command name="add sortfield" code="smXL2518" description="Creates a new sortfield and returns a sortfieldset object.">
			<direct-parameter type="sortfieldset"/>
			<parameter name="key" code="5380" type="range" description="Specifies a key value for the sort."/>
			<parameter name="sorton" code="5381" type="XlSortOn" optional="yes" description="The field to sort on."/>
			<parameter name="order" code="5382" type="XlSortOrder" optional="yes" description="Specifies the sort order."/>
			<parameter name="customorder" code="5383" type="any" optional="yes" description="Specifies if a custom sort order should be used."/>
			<parameter name="dataoption" code="5384" type="XlSortDataOption" optional="yes" description="Specifies the data option."/>
		</command>
		<command name="allocate change" code="smXLCK02">
			<direct-parameter type="pivot cell"/>
		</command>
		<command name="allocate changes" code="smXLCJ56">
			<direct-parameter type="pivot table"/>
		</command>
		<command name="apply filter" code="smXL2531" description="Apply the defined filter">
			<direct-parameter type="specifier"/>
		</command>
		<command name="apply sort" code="smXL2517" description="Sorts the range based on the currently applied sort states.">
			<direct-parameter type="specifier"/>
		</command>
		<command name="apply theme" code="smXLxlTh" description="Applies a theme or design template to the specified workbook">
			<direct-parameter type="workbook"/>
			<parameter name="file name" code="5015" type="text"/>
		</command>
		<command name="arrange_windows" code="smXLXaWs" description="Arranges the windows on the screen">
			<parameter name="arrange style" code="XaSy" type="XlArrangeStyle" optional="yes" description="Specifies the way the windows will be arranged. The default is tiled."/>
			<parameter name="active workbook" code="1172" type="boolean" optional="yes" description="Set to true to arrange only the visible windows of the active workbook, false otherwise.  The default is false."/>
			<parameter name="sync horizontal" code="XAsh" type="boolean" optional="yes" description="Ignored if active workbook is false. Set to true to synchronize the windows of the active workbook when scrolling horizontally. False to not synchronize the windows. The default value is false."/>
			<parameter name="sync vertical" code="XAsV" type="boolean" optional="yes" description="Ignored if active workbook is false. Set to true to synchronize the windows of the active workbook when scrolling vertically. False to not synchronize the windows. The default value is false."/>
		</command>
		<command name="auto show" code="smXL1970" description="Displays the number of top or bottom items for a row, page, or column field in the specified PivotTable report">
			<direct-parameter type="pivot field"/>
			<parameter name="type" code="5103" type="XLAutoShowType" description="Use type_automatic to cause the pivot table to show the items that match the specified criteria. Use type_manual to disable this feature."/>
			<parameter name="range" code="5312" type="XLAutoShowPosition" description="The location at which to start showing items."/>
			<parameter name="count" code="1000" type="integer" description="The number of items to be shown."/>
			<parameter name="field" code="5135" type="text" description="The name of the base data field."/>
		</command>
		<command name="auto sort" code="smXL1969" description="Establishes automatic pivot table field-sorting rules.">
			<direct-parameter type="pivot field"/>
			<parameter name="sort order" code="XsrO" type="XlSortOrder" description="The sort order."/>
			<parameter name="sort field" code="XsrF" type="text" description="The name of the sort key field."/>
		</command>
		<command name="break link" code="smXL1871" description="Converts formulas linked to other Microsoft Excel sources to values.">
			<direct-parameter type="workbook"/>
			<parameter name="name" code="pnam" type="text" description="The name of the link."/>
			<parameter name="type" code="5103" type="XlLinkType" description="The type of link."/>
		</command>
		<command name="bring to front" code="smXL1984" description="Bring the object to the front of the z-order of objects.">
			<direct-parameter type="4011"/>
		</command>
		<command name="calculate" code="smXL1175" description="Calculates all open workbooks, a specific worksheet in a workbook, or a specified range of cells on a worksheet..">
			<direct-parameter type="4004"/>
		</command>
		<command name="calculate full" code="smXL1338" description="Forces a full calculation of the data in all open workbooks."/>
		<command name="calculate full rebuild" code="smXLLLni" description="For all open workbooks, forces a full calculation of the data and rebuilds the dependencies"/>
		<command name="can check in" code="smXL2553" description="Returns True if Excel can check in a specified workbook to a server.">
			<direct-parameter type="workbook"/>
			<result type="boolean"/>
		</command>
		<command name="can check out" code="smXL2556" description="Returns True if Excel can check out a specified workbook from a server.">
			<direct-parameter type="specifier"/>
			<parameter name="file name" code="Cofn" type="text" description="The server path and name of the workbook."/>
			<result type="boolean"/>
		</command>
		<command name="cancel refresh" code="smXL2132" description="Cancels all background queries for the specified query table. Use the refreshing property to determine whether a background query is currently in progress.">
			<direct-parameter type="query table"/>
		</command>
		<command name="centimeters to points" code="smXL1211" description="Converts a measurement from centimeters to points, one point equals 0.035 centimeters.">
			<parameter name="centimeters" code="5079" type="real" description="The centimeter value to be converted."/>
			<result type="real" description="The value in points."/>
		</command>
		<command name="change connection" code="smXLCJ48" description="Changes the connection of the specified PivotTable.">
			<direct-parameter type="pivot table"/>
			<parameter name="connection" code="6040" type="workbook connection"/>
		</command>
		<command name="change file access" code="smXL1801" description="Changes the access permissions for the workbook. This may require an updated version to be loaded from the disk.">
			<direct-parameter type="workbook"/>
			<parameter name="mode" code="1500" type="XlFileAccess" description="Specifies the new access mode."/>
			<parameter name="write password" code="5287" type="text" optional="yes" description="Specifies the write-reserved password if the file is write reserved and mode is read write. Ignored if there's no password for the file or if mode is read only."/>
			<parameter name="notify" code="5288" type="boolean" optional="yes" description=" Set to true, or omit, to notify the user if the file cannot be immediately accessed."/>
		</command>
		<command name="change link" code="smXL1802" description="Changes a link from one document to another.">
			<direct-parameter type="workbook"/>
			<parameter name="name" code="pnam" type="text" description="The name of the Microsoft Excel link to be changed, as it was returned from the link sources method."/>
			<parameter name="new name" code="5289" type="text" description="The new name of the link."/>
			<parameter name="type" code="5103" type="XlLinkType" optional="yes" description="The link type."/>
		</command>
		<command name="change pivot cache" code="smXLCJ49" description="Changes the PivotCache of the specified PivotTable.">
			<direct-parameter type="pivot table"/>
			<parameter name="pivot cache" code="6041" type="text" description="A PivotTable or PivotCache object that represents the new PivotCache for the specfied PivotTable."/>
		</command>
		<command name="change scenario" code="smXL2022" description="Changes the scenario to have a new set of changing cells and, optionally, scenario values.">
			<direct-parameter type="scenario"/>
			<parameter name="changing cells" code="5313" type="XLRangeReference" description="A range object that specifies the new set of changing cells for the scenario. The changing cells must be on the same sheet as the scenario."/>
			<parameter name="values" code="5314" optional="yes" description="A list that contains the new scenario values for the changing cells. If this argument is omitted, the scenario values are assumed to be the current values in the changing cells.">
				<type type="any" list="yes"/>
			</parameter>
		</command>
		<command name="check in" code="smXL2552" description="Returns a workbook from a local computer to a server, and sets the local file to read-only so that it cannot be edited locally.">
			<direct-parameter type="workbook"/>
			<parameter name="save changes" code="Spc1" type="boolean" optional="yes" description="True saves the workbook to the server location. The default value is False."/>
			<parameter name="comments" code="Spc2" type="text" optional="yes" description="Comments for the revision of the workbook being checked in. Only applies if SaveChanges equals True."/>
			<parameter name="make public" code="Spc3" type="boolean" optional="yes" description="True allows the user to perform a publish on the workbook after being checked in."/>
		</command>
		<command name="check in with version" code="smXL2554" description="Returns a workbook from a local computer to a server, and sets the local file to read-only so that it cannot be edited locally.">
			<direct-parameter type="workbook"/>
			<parameter name="save changes" code="Spc1" type="boolean" optional="yes" description="True saves the workbook to the server location. The default value is False."/>
			<parameter name="comments" code="Spc2" type="text" optional="yes" description="Comments for the revision of the workbook being checked in. Only applies if SaveChanges equals True"/>
			<parameter name="make public" code="Spc3" type="boolean" optional="yes" description="True allows the user to perform a publish on the workbook after being checked in."/>
			<parameter name="version type" code="Spc4" type="XlCheckInVersionType" optional="yes" description="Version number of the workbook."/>
		</command>
		<command name="check out" code="smXL2555" description="Copies a specified workbook from a server to a local computer for editing. Returns a String that represents the local path and file name of the workbook checked out.">
			<direct-parameter type="specifier"/>
			<parameter name="file name" code="Cofn" type="text" description="The server path and name of the workbook."/>
		</command>
		<command name="check spelling" code="smXL1212" description="Checks the spelling of an object.">
			<direct-parameter type="4010"/>
			<parameter name="custom dictionary" code="5081" type="text" optional="yes" description="A string that indicates the file name of the custom dictionary to examine if the word isn't found in the main dictionary. If this argument is omitted, the currently specified dictionary is used."/>
			<parameter name="ignore uppercase" code="5082" type="boolean" optional="yes" description="Set to true to have Microsoft Excel ignore words that are all uppercase. False to have Microsoft Excel check words that are all uppercase."/>
			<parameter name="always suggest" code="5145" type="boolean" optional="yes" description="Set to true to have Microsoft Excel display a list of suggested alternate spellings when an incorrect spelling is found. False to have Microsoft Excel wait for you to input the correct spelling."/>
		</command>
		<command name="check spelling for" code="smXLXcsW" description="Checks the spelling of a single word. Returns True if the word is found in one of the dictionaries.">
			<parameter name="text to check" code="5080" type="text" description="The word to be checked."/>
			<parameter name="custom dictionary" code="5081" type="text" optional="yes" description="A string that indicates the file name of the custom dictionary to examine if the word isn't found in the main dictionary. If this argument is omitted, the currently specified dictionary is used."/>
			<parameter name="ignore uppercase" code="5082" type="boolean" optional="yes" description="Set to true to have Microsoft Excel ignore words that are all uppercase."/>
			<result type="boolean"/>
		</command>
		<command name="circle invalid" code="smXL1763" description="Circles invalid entries on the worksheet.">
			<direct-parameter type="sheet"/>
		</command>
		<command name="clear all filters" code="smXLCJ35" description="The ClearAllFilters method deletes all filters currently applied to the PivotTable.">
			<direct-parameter type="4008"/>
		</command>
		<command name="clear arrows" code="smXL1735" description="Clears the tracer arrows from the worksheet. Tracer arrows are added by using the auditing feature.">
			<direct-parameter type="sheet"/>
		</command>
		<command name="clear circles" code="smXL1762" description="Clears circles from invalid entries on the worksheet.">
			<direct-parameter type="sheet"/>
		</command>
		<command name="clear colorstops" code="smXL2547" description="Clears the represented object.">
			<direct-parameter type="specifier"/>
		</command>
		<command name="clear contents" code="smXL1531" description="Clears the formulas from the range. Clears the data from a chart but leaves the formatting. Clears all the data, formatting, and formulas from a list object.">
			<direct-parameter type="list object"/>
		</command>
		<command name="clear label filters" code="smXLCK44" description="This method deletes all label filters or all date filters in the PivotFilters collection of the PivotField.">
			<direct-parameter type="pivot field"/>
		</command>
		<command name="clear manual filter" code="smXLCK41" description="The ClearManualFilter method provides an easy way to set the Visible property to True for all items of a PivotField in PivotTables, and to empty the HiddenItemsList or VisibleItemsList collections in OLAP PivotTables.">
			<direct-parameter type="4007"/>
		</command>
		<command name="clear sortfieldset" code="smXL2519" description="Clears all the sortfield objects.">
			<direct-parameter type="specifier"/>
		</command>
		<command name="clear table" code="smXLCJ27" description="The ClearTable method is used for clearing a PivotTable.">
			<direct-parameter type="pivot table"/>
		</command>
		<command name="clear value filters" code="smXLCK43" description="Calling this method deletes all value filters in the PivotFilters collection of the PivotField.">
			<direct-parameter type="pivot field"/>
		</command>
		<command name="commit changes" code="smXLCJ57">
			<direct-parameter type="pivot table"/>
		</command>
		<command name="convert formula" code="smXL1217" description="Converts cell references in a formula between the A1 and R1C1 reference styles, between relative and absolute references, or both">
			<parameter name="formula to convert" code="5083" type="text" description="A string that contains the formula you want to convert. This must be a valid formula, and it must begin with an equal sign."/>
			<parameter name="from reference style" code="5084" type="XlReferenceStyle" description="The reference style of the formula."/>
			<parameter name="to reference style" code="5085" type="XlReferenceStyle" optional="yes" description="The reference style you want returned."/>
			<parameter name="to absolute" code="5086" type="XlReferenceStyle" optional="yes" description="Specifies the converted reference type."/>
			<parameter name="relative to" code="5087" type="XLRangeReference" optional="yes" description="A range object that contains one cell. Relative references relate to this cell."/>
			<result type="text" description="The converted formula"/>
		</command>
		<command name="convert to formulas" code="smXLCJ42" description="The ConvertToFormulas method is new in 1st_Excel12 and is used for converting a PivotTable to cube formulas.">
			<direct-parameter type="pivot table"/>
			<parameter name="convert filters" code="6039" type="boolean"/>
		</command>
		<command name="convert to range" code="smXL2201" description="Converts a list object to a normal Excel range.">
			<direct-parameter type="list object"/>
			<result type="range"/>
		</command>
		<command name="copy object" code="smXLXcpO" description="Copies the object to the clipboard.">
			<direct-parameter type="4012"/>
		</command>
		<command name="copy picture" code="smXL1539" description="Copies the selected object to the clipboard as a picture.">
			<direct-parameter type="4013"/>
			<parameter name="appearance" code="5155" type="XlPictureAppearance" optional="yes" description="Specifies how the picture should be copied."/>
			<parameter name="format" code="5140" type="XlCopyPictureFormat" optional="yes" description="The format of the picture."/>
		</command>
		<command name="copy worksheet" code="smXLXcpW" description="Copies the sheet to another location in the workbook.">
			<direct-parameter type="sheet"/>
			<parameter name="before" code="5235" type="sheet" optional="yes" description="The sheet before which the copied sheet will be placed. You cannot specify before if you specify after."/>
			<parameter name="after" code="5167" type="sheet" optional="yes" description="The sheet after which the copied sheet will be placed. You cannot specify after if you specify before."/>
		</command>
		<command name="create cube file" code="smXLCJ18" description="Creates a cube file from a PivotTable report connected to an Online Analytical Processing data source.">
			<direct-parameter type="pivot table"/>
			<parameter name="file" code="6032" type="text" description="The name of the cube file to be created. "/>
			<parameter name="measures" code="6033" type="text" optional="yes" description="An array of unique names of measures that are to be part of the slice."/>
			<parameter name="levels" code="6034" type="text" optional="yes" description="An array of strings. Each array item is a unique level name."/>
			<parameter name="members" code="6035" type="text" optional="yes" description="An array of string arrays. The elements correspond, in order, to the hierarchies represented in the Levels array."/>
			<parameter name="properties" code="6036" type="text" optional="yes" description="False results in no member properties being included in the slice. The default value is True."/>
			<result type="text"/>
		</command>
		<command name="create new document" code="smXL2188" description="Creates a new document linked to the specified hyperlink.">
			<direct-parameter type="hyperlink"/>
			<parameter name="file name" code="5262" type="text" description="The file name of the specified document."/>
			<parameter name="edit now" code="5328" type="boolean" description="Set to true to have the specified document open immediately in its associated editing environment.. The default value is true."/>
			<parameter name="overwrite" code="5321" type="boolean" description="Set to true to overwrite any existing file of the same name in the same folder. False if any existing file of the same name is preserved and the file name argument specifies a new file name. The default value is false."/>
		</command>
		<command name="create pivot fields" code="smXLCL02" description="The CreatePivotFields method enables users to create all PivotFields of a CubeField.">
			<direct-parameter type="cube field"/>
		</command>
		<command name="create pivot table" code="smXLCJ76" description="Creates a PivotTable report based on a PivotCache object.">
			<direct-parameter type="pivot cache"/>
			<parameter name="table destination" code="6043" type="text"/>
			<parameter name="table name" code="6044" type="text" optional="yes"/>
			<parameter name="read data" code="6045" type="text" optional="yes"/>
			<parameter name="default version" code="6046" type="text" optional="yes"/>
		</command>
		<command name="create summary for scenarios" code="smXLXcSs" description="Creates a new worksheet that contains a summary report for the scenarios on the specified worksheet.">
			<direct-parameter type="worksheet"/>
			<parameter name="report type" code="XRpT" type="XlSummaryReportType" optional="yes" description="Specifies the report type."/>
			<parameter name="result cells" code="XRtC" type="XLRangeReference" optional="yes" description="Normally, this range refers to one or more cells containing the formulas that depend on the changing cell values for your model, that is, the cells that show the results of a particular scenario."/>
		</command>
		<command name="cut" code="smXL1543" description="Cuts the object to the clipboard.">
			<direct-parameter type="4014"/>
		</command>
		<command name="delete" code="smXLCJ63" description="Deletes the object.">
			<direct-parameter type="4006"/>
		</command>
		<command name="delete chart autoformat" code="smXL1235" description="Removes a custom chart autoformat from the list of available chart autoformats.">
			<parameter name="name" code="pnam" type="text" description="The name of the custom autoformat to be removed."/>
		</command>
		<command name="delete colorstop" code="smXL2549" description="Clears the represented object.">
			<direct-parameter type="colorstop"/>
		</command>
		<command name="delete custom list" code="smXL1236" description="Deletes a custom list.">
			<parameter name="list num" code="5088" type="integer" description="The custom list number. This number must be greater than or equal to 5."/>
		</command>
		<command name="delete number format" code="smXL1810" description="Deletes a custom number format from the workbook.">
			<direct-parameter type="workbook"/>
			<parameter name="number format" code="1593" type="text" description="Names the number format to be deleted."/>
		</command>
		<command name="delete sortfield" code="smXL2527" description="Removes the specified sortfield object from the sortfieldset collection.">
			<direct-parameter type="specifier"/>
		</command>
		<command name="discard change" code="smXLCK03">
			<direct-parameter type="pivot cell"/>
		</command>
		<command name="discard changes" code="smXLCJ58">
			<direct-parameter type="pivot table"/>
		</command>
		<command name="double click" code="smXL1247" description="Equivalent to double-clicking the active cell."/>
		<command name="drill to" code="smXLCK26" description="The DrillTo method supports drilling to a specified PivotField from another PivotField.">
			<direct-parameter type="4009"/>
			<parameter name="field" code="6055" type="text"/>
		</command>
		<command name="evaluate" code="smXL2435" description="Converts a Microsoft Excel name to an object or value.">
			<parameter name="name" code="pnam" type="any" description="The name of the object, using the naming convention of Microsoft Excel."/>
			<result type="any" description="The resulting object or value."/>
		</command>
		<command name="exclusive access" code="smXL1812" description="Assigns the current user exclusive access to the workbook that's open as a shared list.">
			<direct-parameter type="workbook"/>
			<result type="boolean" description="Specifies success or failure."/>
		</command>
		<command name="follow" code="smXL2184" description="Displays a cached document, if it's already been downloaded. Otherwise, this method resolves the hyperlink, downloads the target document, and displays the document in the appropriate application.">
			<direct-parameter type="hyperlink"/>
			<parameter name="new window" code="1125" type="boolean" optional="yes" description="Set to true to display the target application in a new window. The default value is false."/>
			<parameter name="extra info" code="5304" type="text" optional="yes" description="A string that specifies additional information for HTTP to use to resolve the hyperlink. For example, you can use extra info to specify the coordinates of an image map, the contents of a form, or a file name."/>
			<parameter name="method" code="5305" type="MsoExtraInfoMethod" optional="yes" description="Specifies the way extra info is attached."/>
			<parameter name="header info" code="5306" type="text" optional="yes" description="A string that specifies header information for the HTTP request. The default value is an empty string."/>
		</command>
		<command name="follow hyperlink" code="smXL1865" description="Displays a cached document, if it's already been downloaded. Otherwise, this method resolves the hyperlink, downloads the target document, and displays the document in the appropriate application.">
			<direct-parameter type="workbook"/>
			<parameter name="address" code="5301" type="text" description="The address of the target document."/>
			<parameter name="sub address" code="5302" type="text" optional="yes" description="The location within the target document. The default value is the empty string."/>
			<parameter name="new window" code="1125" type="boolean" optional="yes" description="Set to true to display the target application in a new window. The default value is false."/>
			<parameter name="extra info" code="5304" type="text" optional="yes" description="A string that specifies additional information for HTTP to use to resolve the hyperlink. For example, you can use extra info to specify the coordinates of an image map, the contents of a form, or a file name."/>
			<parameter name="method" code="5305" type="MsoAnimationType" optional="yes" description="Specifies the way extra info is attached."/>
			<parameter name="header info" code="5306" type="text" optional="yes" description="A string that specifies header information for the HTTP request. The default value is an empty string."/>
		</command>
		<command name="get border" code="smXLXBtr" description="Returns the specified border object.">
			<direct-parameter type="4025"/>
			<parameter name="which border" code="wWbr" type="XlBordersIndex" description="This specifies which border object should be retrieved."/>
			<result type="border"/>
		</command>
		<command name="get clipboard formats" code="smXL1213" description="Returns a list of the  formats that are currently on the clipboard.">
			<result>
				<type type="XlClipboardFormat" list="yes"/>
			</result>
		</command>
		<command name="get custom list contents" code="smXL1257" description="Returns a custom list of strings.">
			<parameter name="list num" code="5088" type="integer" description="The list number."/>
			<result>
				<type type="any" list="yes"/>
			</result>
		</command>
		<command name="get custom list num" code="smXL1258" description="Returns the custom list number for an array of strings. You can use this method to match both built-in lists and custom-defined lists.">
			<parameter name="list array" code="5077" description="A list of strings.">
				<type type="text" list="yes"/>
			</parameter>
			<result type="integer"/>
		</command>
		<command name="get dialog" code="smXLXgDg" description="Returns a the specified dialog object.">
			<direct-parameter type="XlBuiltInDialog"/>
			<result type="dialog"/>
		</command>
		<command name="get file converters" code="smXL1252" description="Returns a list of all of the file converter objects.">
			<result>
				<type type="text" list="yes"/>
			</result>
		</command>
		<command name="get international" code="smXL1266" description="Returns information about a specific international setting.">
			<parameter name="data type" code="5216" type="XlApplicationInternational" description="The international data to be returned."/>
			<result type="any"/>
		</command>
		<command name="get list item" code="smXLXgLi" description="Returns a string from the list">
			<direct-parameter type="4017"/>
			<parameter name="entry_index" code="MSix" type="integer" optional="yes" description="The index of the string to be returned."/>
			<result type="text"/>
		</command>
		<command name="get open filename" code="smXL1259" description="Displays the standard Open dialog box and gets a file name from the user without actually opening any files.">
			<parameter name="file filter" code="5091" type="text" optional="yes" description="This string is a list of comma-separated file type codes, for example, TEXT,XLA5,XLS4. If omitted, this argument defaults to all file types."/>
			<parameter name="button text" code="5094" type="text" optional="yes" description="Specifies the text used for the open button in the dialog box. If this argument is omitted, the button text is Open."/>
			<parameter name="multi select" code="5095" type="boolean" optional="yes" description="Set to true to allow multiple file names to be selected. Set to false to allow only one file name to be selected. The default value is false."/>
			<result type="text" description="The name of the selected file to open"/>
		</command>
		<command name="get pivot data" code="smXLCJ06" description="Returns a Range object with information about a data item in a PivotTable report.">
			<direct-parameter type="pivot table"/>
			<parameter name="data field" code="6000" type="text" optional="yes" description="The name of the field containing the data for the PivotTable."/>
			<parameter name="field1" code="6001" type="text" optional="yes" description="The name of a column or row field in the PivotTable report."/>
			<parameter name="item1" code="6002" type="text" optional="yes" description="The name of an item in field1."/>
			<parameter name="field2" code="6003" type="text" optional="yes" description="The name of a column or row field in the PivotTable report."/>
			<parameter name="item2" code="6004" type="text" optional="yes" description="The name of an item in field2."/>
			<parameter name="field3" code="6005" type="text" optional="yes" description="The name of a column or row field in the PivotTable report."/>
			<parameter name="item3" code="6006" type="text" optional="yes" description="The name of an item in field3."/>
			<parameter name="field4" code="6007" type="text" optional="yes" description="The name of a column or row field in the PivotTable report."/>
			<parameter name="item4" code="6008" type="text" optional="yes" description="The name of an item in field4."/>
			<parameter name="field5" code="6009" type="text" optional="yes" description="The name of a column or row field in the PivotTable report."/>
			<parameter name="item5" code="6010" type="text" optional="yes" description="The name of an item in field5."/>
			<parameter name="field6" code="6011" type="text" optional="yes" description="The name of a column or row field in the PivotTable report."/>
			<parameter name="item6" code="6012" type="text" optional="yes" description="The name of an item in field6."/>
			<parameter name="field7" code="6013" type="text" optional="yes" description="The name of a column or row field in the PivotTable report."/>
			<parameter name="item7" code="6014" type="text" optional="yes" description="The name of an item in field7."/>
			<parameter name="field8" code="6015" type="text" optional="yes" description="The name of a column or row field in the PivotTable report."/>
			<parameter name="item8" code="6016" type="text" optional="yes" description="The name of an item in field8."/>
			<parameter name="field9" code="6017" type="text" optional="yes" description="The name of a column or row field in the PivotTable report."/>
			<parameter name="item9" code="6018" type="text" optional="yes" description="The name of an item in field9."/>
			<parameter name="field10" code="6019" type="text" optional="yes" description="The name of a column or row field in the PivotTable report."/>
			<parameter name="item10" code="6020" type="text" optional="yes" description="The name of an item in field10."/>
			<parameter name="field11" code="6021" type="text" optional="yes" description="The name of a column or row field in the PivotTable report."/>
			<parameter name="item11" code="6022" type="text" optional="yes" description="The name of an item in field11."/>
			<parameter name="field12" code="6023" type="text" optional="yes" description="The name of a column or row field in the PivotTable report."/>
			<parameter name="item12" code="6024" type="text" optional="yes" description="The name of an item in field12."/>
			<parameter name="field13" code="6025" type="text" optional="yes" description="The name of a column or row field in the PivotTable report."/>
			<parameter name="item13" code="6026" type="text" optional="yes" description="The name of an item in field13."/>
			<parameter name="field14" code="6027" type="text" optional="yes" description="The name of a column or row field in the PivotTable report."/>
			<parameter name="item14" code="6028" type="text" optional="yes" description="The name of an item in field14."/>
			<result type="range"/>
		</command>
		<command name="get pivot table data" code="smXL1921" description="Retrieve data from a pivot table">
			<direct-parameter type="pivot table"/>
			<parameter name="name" code="pnam" type="text" description="Describes a single cell in the pivot table, using syntax similar to the pivot select method or the pivot table references in calculated item formulas."/>
			<result type="real"/>
		</command>
		<command name="get previous selections" code="smXL1291" description="Returns a list of the last four ranges or names selected. Each element in the list is a range object.">
			<result>
				<type type="specifier" list="yes"/>
			</result>
		</command>
		<command name="get registered functions" code="smXL1298" description="Returns information about functions in code resources that were registered with the REGISTER or REGISTER.ID macro functions.">
			<result>
				<type type="text" list="yes"/>
			</result>
		</command>
		<command name="get save as filename" code="smXL1260" description="Displays the standard save as dialog box and gets a file name from the user without actually saving any files.">
			<parameter name="initial filename" code="5096" type="text" optional="yes" description="Specifies the suggested file name. If this argument is omitted, Microsoft Excel uses the active workbook's name."/>
			<parameter name="file filter" code="5091" type="text" optional="yes" description="This string is a list of comma-separated file type codes, for example, TEXT, XLA5, XLS4. If omitted, this argument defaults to all file types."/>
			<parameter name="filter index" code="5092" type="integer" optional="yes" description="This string is a list of comma-separated file type codes, for example, TEXT, XLA5, XLS4. If omitted, this argument defaults to all file types."/>
			<parameter name="button text" code="5094" type="text" optional="yes" description="Specifies the text used for the save button in the dialog box. If this argument is omitted, the button text is Save."/>
			<result type="text" description="The selected file name."/>
		</command>
		<command name="get subtotals" code="smXL1955" description="Returns subtotals displayed with the specified field. Valid only for nondata fields.">
			<direct-parameter type="pivot field"/>
			<parameter name="subtotal index" code="XSTT" type="XLSubTotalsIndex" optional="yes" description="Specifies the subtotal to be returned as follows: 1 automatic, 2  sum, 3  count, 4 average, 5  max, 6  min, 7  product, 8  count nums, 9  StdDev, 10  StdDevp, 11  Var, 12  Varp."/>
			<result type="boolean"/>
		</command>
		<command name="get values" code="smXL2024" description="Returns or sets a list that contains the current values of the changing cells for the scenario.">
			<direct-parameter type="scenario"/>
			<result>
				<type type="any" list="yes"/>
			</result>
		</command>
		<command name="get visible fields" code="smXL1912" description="Returns a list of all the visible pivot fields. Visible pivot fields are shown as row, column, page or data fields.">
			<direct-parameter type="pivot table"/>
			<result>
				<type type="specifier" list="yes"/>
			</result>
		</command>
		<command name="goto" code="smXL1261" description="Selects any range in any workbook, and activates that workbook if it's not already active.">
			<parameter name="reference" code="5097" type="XLRangeReference" optional="yes" description="The destination. Can be a range object, a string that contains a cell reference in R1C1-style notation. If this argument is omitted, the destination is the last range you used the goto method to select."/>
			<parameter name="scroll" code="5098" type="boolean" optional="yes" description="Set to true to scroll through the window so that the upper-left corner of the range appears in the upper-left corner of the window. The default is false."/>
		</command>
		<command name="help" code="smXL1262" description="Displays the Help window.">
			<parameter name="help file" code="5099" type="text" optional="yes" description="The name of the online Help file to display. If this argument isn't specified, Microsoft Excel Help is displayed."/>
			<parameter name="help context id" code="5100" type="integer" optional="yes" description="Specifies the context ID number for the Help topic to display. If this argument isn't specified, the default topic for the specified Help file is displayed."/>
		</command>
		<command name="highlight changes options" code="smXL1856" description="Controls how changes are shown in a shared workbook.">
			<direct-parameter type="workbook"/>
			<parameter name="when" code="5298" type="XlHighlightChangesTime" optional="yes" description="The changes that are shown."/>
			<parameter name="who" code="5299" type="text" optional="yes" description="The user or users whose changes are shown. Can be Everyone, Everyone but Me, or the name of one of the users of the shared workbook."/>
			<parameter name="where" code="5260" type="XLRangeReference" optional="yes" description="An A1-style range reference that specifies the area to check for changes."/>
		</command>
		<command name="inches to points" code="smXL1263" description="Converts a measurement from inches to points.">
			<parameter name="inches" code="5101" type="real" description="Specifies the inch value to be converted to points."/>
			<result type="real" description="The value of the inches converted to points."/>
		</command>
		<command name="input box" code="smXL1264" description="Displays a dialog box for user input. Returns the information entered in the dialog box.">
			<parameter name="prompt" code="5102" type="text" description="The message to be displayed in the dialog box."/>
			<parameter name="title" code="5093" type="text" optional="yes" description="The title for the input box. If this argument is omitted, the default title is Input."/>
			<parameter name="default" code="1233" type="XLInputDefault" optional="yes" description="Specifies a value that will appear in the text box when the dialog box is initially displayed. If this argument is omitted, the text box is left empty."/>
			<parameter name="left position" code="plft" type="integer" optional="yes" description="Specifies an x position for the dialog box in relation to the upper-left corner of the screen, in points."/>
			<parameter name="top" code="ptop" type="integer" optional="yes" description="Specifies a y position for the dialog box in relation to the upper-left corner of the screen, in points."/>
			<parameter name="type" code="5103" type="XLInputType" optional="yes" description="Specifies what type of data the result should be."/>
			<result type="specifier"/>
		</command>
		<command name="intersect" code="smXL1182" description="Returns a range object that represents the rectangular intersection of two or more ranges.">
			<parameter name="range1" code="XLr1" type="range" description="One of the intersecting ranges."/>
			<parameter name="range2" code="XLr2" type="range" description="One of the intersecting ranges."/>
			<parameter name="range3" code="XLr3" type="range" optional="yes" description="One of the intersecting ranges."/>
			<parameter name="range4" code="XLr4" type="range" optional="yes" description="One of the intersecting ranges."/>
			<parameter name="range5" code="XLr5" type="range" optional="yes" description="One of the intersecting ranges."/>
			<parameter name="range6" code="XLr6" type="range" optional="yes" description="One of the intersecting ranges."/>
			<parameter name="range7" code="XLr7" type="range" optional="yes" description="One of the intersecting ranges."/>
			<parameter name="range8" code="XLr8" type="range" optional="yes" description="One of the intersecting ranges."/>
			<parameter name="range9" code="XLr9" type="range" optional="yes" description="One of the intersecting ranges."/>
			<parameter name="range10" code="Xr10" type="range" optional="yes" description="One of the intersecting ranges."/>
			<parameter name="range11" code="Xr11" type="range" optional="yes" description="One of the intersecting ranges."/>
			<parameter name="range12" code="Xr12" type="range" optional="yes" description="One of the intersecting ranges."/>
			<parameter name="range13" code="Xr13" type="range" optional="yes" description="One of the intersecting ranges."/>
			<parameter name="range14" code="Xr14" type="range" optional="yes" description="One of the intersecting ranges."/>
			<parameter name="range15" code="Xr15" type="range" optional="yes" description="One of the intersecting ranges."/>
			<parameter name="range16" code="Xr16" type="range" optional="yes" description="One of the intersecting ranges."/>
			<parameter name="range17" code="Xr17" type="range" optional="yes" description="One of the intersecting ranges."/>
			<parameter name="range18" code="Xr18" type="range" optional="yes" description="One of the intersecting ranges."/>
			<parameter name="range19" code="Xr19" type="range" optional="yes" description="One of the intersecting ranges."/>
			<parameter name="range20" code="Xr20" type="range" optional="yes" description="One of the intersecting ranges."/>
			<parameter name="range21" code="Xr21" type="range" optional="yes" description="One of the intersecting ranges."/>
			<parameter name="range22" code="Xr22" type="range" optional="yes" description="One of the intersecting ranges."/>
			<parameter name="range23" code="Xr23" type="range" optional="yes" description="One of the intersecting ranges."/>
			<parameter name="range24" code="Xr24" type="range" optional="yes" description="One of the intersecting ranges."/>
			<parameter name="range25" code="Xr25" type="range" optional="yes" description="One of the intersecting ranges."/>
			<parameter name="range26" code="Xr26" type="range" optional="yes" description="One of the intersecting ranges."/>
			<parameter name="range27" code="Xr27" type="range" optional="yes" description="One of the intersecting ranges."/>
			<parameter name="range28" code="Xr28" type="range" optional="yes" description="One of the intersecting ranges."/>
			<parameter name="range29" code="Xr29" type="range" optional="yes" description="One of the intersecting ranges."/>
			<parameter name="range30" code="Xr30" type="range" optional="yes" description="One of the intersecting ranges."/>
			<result type="range" description="The intersection region of the specified ranges."/>
		</command>
		<command name="large scroll" code="smXL1124" description="Scrolls the contents of the window by pages.">
			<direct-parameter type="4021"/>
			<parameter name="down" code="5018" type="integer" optional="yes" description="The number of pages to scroll the contents down."/>
			<parameter name="up" code="5019" type="integer" optional="yes" description="The number of pages to scroll the contents up."/>
			<parameter name="to right" code="5020" type="integer" optional="yes" description="The number of pages to scroll the contents to the right."/>
			<parameter name="to left" code="5021" type="integer" optional="yes" description="The number of pages to scroll the contents to the left."/>
		</command>
		<command name="link info" code="smXL1817" description="Returns the link date and update status.">
			<direct-parameter type="workbook"/>
			<parameter name="name" code="pnam" type="text" description="The name of the link, as returned from the link sources method."/>
			<parameter name="link info" code="1817" type="XlLinkInfo" description="The type of information to be returned."/>
			<parameter name="type" code="5103" type="XlLinkInfoType" optional="yes" description="The type of link to return."/>
			<result type="specifier"/>
		</command>
		<command name="link sources" code="smXL1818" description="Returns a list of links in the workbook. The names in the array are the names of the linked documents. Returns empty if there are no links.">
			<direct-parameter type="workbook"/>
			<parameter name="type" code="5103" type="XlLinkType" optional="yes" description="The type of link to return."/>
			<result>
				<type type="text" list="yes"/>
			</result>
		</command>
		<command name="list formulas" code="smXL1922" description="Creates a list of calculated pivot table items and fields on a separate worksheet.">
			<direct-parameter type="pivot table"/>
		</command>
		<command name="make connection" code="smXLCJ80" description="Establishes a connection for the specified PivotTable cache.">
			<direct-parameter type="pivot table"/>
		</command>
		<command name="merge scenarios" code="smXLXMss" description="Merges the scenarios from the merge source worksheet into this worksheet">
			<direct-parameter type="worksheet"/>
			<parameter name="merge source" code="XmSr" type="e298" description="The worksheet to merge with."/>
		</command>
		<command name="merge workbook" code="smXL1819" description="Merges changes from one workbook into an open workbook.">
			<direct-parameter type="workbook"/>
			<parameter name="file name" code="5016" type="text" description="The file name of the workbook that contains the changes to be merged into the open workbook."/>
		</command>
		<command name="modify" code="smXL2118" description="Modifies data validation for a range.">
			<direct-parameter type="validation"/>
			<parameter name="type" code="5103" type="XlDVType" optional="yes" description="The validation type."/>
			<parameter name="alert style" code="2169" type="XlDVAlertStyle" optional="yes" description="The validation alert style."/>
			<parameter name="operator" code="2120" type="XlFormatConditionOperator" optional="yes" description="The data validation operator."/>
			<parameter name="formula1" code="2121" type="text" optional="yes" description="The first part of the data validation equation."/>
			<parameter name="formula2" code="2122" type="text" optional="yes" description="The second part of the data validation when operator is operator between or operator not between, otherwise, this argument is ignored."/>
		</command>
		<command name="modify applies to range" code="smXL2572" description="Changes the range that this format condition applies to.">
			<direct-parameter type="4028"/>
			<parameter name="range" code="5387" type="range"/>
		</command>
		<command name="modify condition" code="smXLXMFc" description="Modifies an existing conditional format.">
			<direct-parameter type="format condition"/>
			<parameter name="type" code="5103" type="XlFormatConditionType" description="Specifies whether the conditional format is based on a cell value or an expression."/>
			<parameter name="operator" code="5137" type="XlFormatConditionOperator" optional="yes" description="The conditional format operator."/>
			<parameter name="formula1" code="5319" type="text" optional="yes" description="The value or expression associated with the conditional format."/>
			<parameter name="formula2" code="5320" type="text" optional="yes" description="he value or expression associated with the second part of the conditional format when operator is operator between or operator not between."/>
			<parameter name="string" code="5390" type="text" optional="yes"/>
			<parameter name="operator2" code="5391" type="XlFormatConditionOperator" optional="yes" description="The conditional format operator."/>
		</command>
		<command name="modify condition value" code="smXL2563" description="Modifies an existing condition value.">
			<direct-parameter type="condition value"/>
			<parameter name="type" code="5103" type="XlConditionValueTypes" description="Specifies whether the conditional format is based on a cell value or an expression."/>
			<parameter name="condition value" code="5389" type="any" optional="yes" description="The value or expression associated with the conditional format."/>
		</command>
		<command name="modify sort key" code="smXL2528" description="Modify the key value by which values are sorted in the field.">
			<direct-parameter type="sortfield"/>
			<parameter name="rng" code="5385" type="range" description="Specifies the key to be modified."/>
		</command>
		<command name="new window on workbook" code="smXLXnWw" description="Creates a new window or a copy of the specified workbook window.">
			<direct-parameter type="workbook"/>
			<result type="window"/>
		</command>
		<command name="next Excel comment" code="smXLXnxC" description="Returns the next Excel comment object">
			<direct-parameter type="Excel comment"/>
			<result type="Excel comment"/>
		</command>
		<command name="on key" code="smXL1283" description="Runs a specified procedure when a particular key or key combination is pressed.">
			<parameter name="key" code="5110" type="text" description="Specifies the key to bind the procedure to."/>
			<parameter name="command key pressed" code="XcKP" type="boolean" optional="yes" description="Specifies if the command key needs to pressed as well and the key specified by the key argument."/>
			<parameter name="shift key pressed" code="XsKP" type="boolean" optional="yes" description="Specifies if the shift key needs to pressed as well and the key specified by the key argument."/>
			<parameter name="option key pressed" code="XoKP" type="boolean" optional="yes" description="Specifies if the option key needs to pressed as well and the key specified by the key argument."/>
			<parameter name="control key pressed" code="XrKP" type="boolean" optional="yes" description="Specifies if the control key needs to pressed as well and the key specified by the key argument."/>
			<parameter name="procedure" code="5111" type="XLOnDataType" optional="yes" description="A string containing AppleScript commands. If this argument is empty nothing happens when key is pressed.  If procedure is omitted, key reverts to its normal result in Microsoft Excel."/>
		</command>
		<command name="open data base" code="smXLOpdb" description="Open a data base">
			<direct-parameter type="specifier"/>
			<parameter name="filename" code="BoDf" type="text"/>
			<parameter name="command text" code="BoDe" type="text" optional="yes"/>
			<parameter name="rcommand type" code="BoDg" type="integer" optional="yes"/>
			<parameter name="back ground query" code="BoDh" type="null" optional="yes"/>
			<parameter name="import data as" code="BoDi" type="integer" optional="yes"/>
		</command>
		<command name="open links" code="smXL1821" description="Opens the supporting documents for a link or links.">
			<direct-parameter type="workbook"/>
			<parameter name="name" code="pnam" type="text" description="The name of the Microsoft Excel link, as returned from the link sources method."/>
			<parameter name="read only" code="5291" type="boolean" optional="yes" description="Set to true to open documents as read-only. The default value is false."/>
			<parameter name="type" code="5103" type="XlLinkType" optional="yes" description="The link type."/>
		</command>
		<command name="open text file" code="smXLXoTx" description="Loads and parses a text file as a new workbook with a single sheet that contains the parsed text-file data.">
			<parameter name="filename" code="5016" type="text" description="Specifies the file name of the text file to be opened and parsed."/>
			<parameter name="origin" code="XoDw" type="XlPlatform" optional="yes" description="Specifies the origin of the text file."/>
			<parameter name="start row" code="XoSW" type="integer" optional="yes" description="The row number at which to start parsing text.  The default is 1."/>
			<parameter name="data type" code="5216" type="XlTextParsingType" optional="yes" description="Specifies the column format of the data in the file. "/>
			<parameter name="text qualifier" code="5217" type="XlTextQualifier" optional="yes" description="Specifies the text qualifier"/>
			<parameter name="consecutive delimiter" code="5218" type="boolean" optional="yes" description="Set to true to have consecutive delimiters considered one delimiter.  The default is false."/>
			<parameter name="tab" code="5219" type="boolean" optional="yes" description="Set to true to have the tab character be the delimiter.  The default is false."/>
			<parameter name="semicolon" code="5220" type="boolean" optional="yes" description="Set to true to have the semicolon character be the delimiter.  The default is false."/>
			<parameter name="comma" code="5221" type="boolean" optional="yes" description="Set to true to have the comma character be the delimiter.  The default is false."/>
			<parameter name="space" code="5222" type="boolean" optional="yes" description="Set to true to have the comma character be the delimiter.  The default is false."/>
			<parameter name="use other" code="XuOr" type="boolean" optional="yes" description="Set to true to have the character specified by the other char argument be the delimiter.  The data type argument must be delimited. The default is false."/>
			<parameter name="other char" code="5224" type="text" optional="yes" description="This is required if the use other argument is true.  Specifies the delimiter character when Other is true. If more than one character is specified, only the first character of the string is used, the remaining characters are ignored."/>
			<parameter name="field info" code="5225" optional="yes" description="A list contain parse information for the individual columns of data. Formats are general format, text format, MDY format, DMY format, YMD format, MYD format, DYM format, YDM format, skip column.">
				<type type="XlColumnDataType" list="yes"/>
			</parameter>
			<parameter name="decimal separator" code="5226" type="text" optional="yes" description="The decimal separator that Microsoft Excel uses when recognizing numbers. The default setting is the system setting."/>
			<parameter name="thousands separator" code="5227" type="text" optional="yes" description="The thousands separator that Excel uses when recognizing numbers. The default setting is the system setting."/>
		</command>
		<command name="open workbook" code="smXL1169" description="Opens a workbook.">
			<parameter name="workbook file name" code="WbFN" type="text" description="The name of the file containing the workbook to be opened."/>
			<parameter name="update links" code="XOul" type="MyUDateLinks" optional="yes" description="Specifies the way links in the file are updated. If this argument is omitted, the user is prompted to specify how links will be updated."/>
			<parameter name="read only" code="5291" type="boolean" optional="yes" description="Set to true to open the workbook in read-only mode."/>
			<parameter name="format" code="5140" type="MyODelimiter" optional="yes" description="If Microsoft Excel is opening a text file, this argument specifies the delimiter character.  If this argument is omitted, the current delimiter is used."/>
			<parameter name="password" code="5236" type="text" optional="yes" description="A string that contains the password required to open a protected workbook. If this argument is omitted and the workbook requires a password, the user is prompted for the password."/>
			<parameter name="write reserved password" code="XoRP" type="text" optional="yes" description="A string that contains the password required to write to a write-reserved workbook. If this argument is omitted and the workbook requires a password, the user will be prompted for the password."/>
			<parameter name="ignore read only recommended" code="XoiR" type="boolean" optional="yes" description="Set to true to have Microsoft Excel not display the read-only recommended message if the workbook was saved with the read-only recommended option."/>
			<parameter name="origin" code="XoDw" type="XlPlatform" optional="yes" description="If the file is a text file, this argument indicates where it originated so that code pages and Carriage return/line feed, CR/LF can be mapped correctly."/>
			<parameter name="delimiter" code="XoDL" type="text" optional="yes" description="If the file is a text file and the format argument is custom character delimiter, this argument is a string that specifies the character to be used as the delimiter."/>
			<parameter name="editable" code="XoEd" type="boolean" optional="yes" description="If the file is a Microsoft Excel 4.0 add-in, this argument is true to open the add-in so that it's a visible window. If the file isn't an add-in, true prevents the running of any Auto_Open macros."/>
			<parameter name="notify" code="5288" type="boolean" optional="yes" description="If the file cannot be opened in read/write mode, this argument is true to add the file to the file notification list. Excel will open the file as read-only, poll the file notification list, and then notify the user when the file becomes available."/>
			<parameter name="converter" code="XoCV" type="integer" optional="yes" description="The index of the first file converter to try when opening the file. The specified file converter is tried first, if this converter doesn't recognize the file, all other converters are tried."/>
			<parameter name="add to mru" code="5245" type="boolean" optional="yes" description="Set to true to add this workbook to the list of recently used files. The default value is false."/>
			<result type="workbook" description="A workbook object for the newly opened workbook."/>
		</command>
		<command name="open xml" code="smXLXCdq" description="Open an XML file">
			<direct-parameter type="specifier"/>
			<parameter name="filename" code="BoPf" type="text"/>
			<parameter name="style sheets" code="BoGf" type="integer" optional="yes"/>
			<parameter name="load option" code="BoKf" type="integer" optional="yes"/>
		</command>
		<command name="paste special on worksheet" code="smXLXpsW" description="Pastes the contents of the clipboard onto the sheet, using a specified format. Use this method to paste data from other applications or to paste data in a specific format.">
			<direct-parameter type="sheet"/>
			<parameter name="format" code="5140" type="text" optional="yes" description="A string that specifies the clipboard format of the data."/>
			<parameter name="link" code="5265" type="boolean" optional="yes" description="Set to true to establish a link to the source of the pasted data. If the source data isn't suitable for linking or the source application doesn't support linking, this parameter is ignored. The default value is false."/>
			<parameter name="display as icon" code="5266" type="boolean" optional="yes" description="Set to true to display the pasted as an icon. The default value is false."/>
			<parameter name="icon file name" code="5267" type="text" optional="yes" description="The name of the file that contains the icon to use if display as icon is true"/>
			<parameter name="icon index" code="5268" type="integer" optional="yes" description="The index number of the icon within the icon file."/>
			<parameter name="icon label" code="5269" type="text" optional="yes" description="The text label of the icon."/>
			<parameter name="no HTML formatting" code="nofm" type="boolean" optional="yes" description="Set to true to remove all formatting, hyperlinks, and images from HTML. Set to false to paste HTML as is. The default value is false."/>
		</command>
		<command name="paste worksheet" code="smXL1696" description="Pastes the contents of the Clipboard onto the sheet.">
			<direct-parameter type="sheet"/>
			<parameter name="destination" code="5134" type="XLRangeReference" optional="yes" description="A range object that specifies where the clipboard contents should be pasted. If this argument is omitted, the current selection is used."/>
			<parameter name="link" code="5265" type="boolean" optional="yes" description="Set to true to establish a link to the source of the pasted data. If this argument is specified, the destination argument cannot be used. The default value is false."/>
		</command>
		<command name="pivot select" code="smXL1933" description="Selects part of a pivot table.">
			<direct-parameter type="pivot table"/>
			<parameter name="name" code="pnam" type="text" description="The selection, in standard pivot table selection format."/>
			<parameter name="mode" code="1500" type="XlPTSelectionMode" description="Specifies the structured selection mode."/>
		</command>
		<command name="previous Excel comment" code="smXLXpvC" description="Returns the previous Excel comment object">
			<direct-parameter type="Excel comment"/>
			<result type="Excel comment"/>
		</command>
		<command name="print out" code="smXL1128" description="Prints the object">
			<direct-parameter type="4002"/>
			<parameter name="from" code="5022" type="integer" optional="yes" description="The number of the page at which to start printing. If this argument is omitted, printing starts at the beginning."/>
			<parameter name="to" code="5023" type="integer" optional="yes" description="The number of the last page to print. If this argument is omitted, printing ends with the last page."/>
			<parameter name="copies" code="5024" type="integer" optional="yes" description="The number of copies to print. If this argument is omitted, one copy is printed."/>
			<parameter name="preview" code="5025" type="boolean" optional="yes" description="Set to true to have Microsoft Excel invoke print preview before printing the object."/>
			<parameter name="active printer" code="5026" type="text" optional="yes" description="Sets the name of the active printer."/>
			<parameter name="print to file" code="5027" type="boolean" optional="yes" description="Set to true to print to a file."/>
			<parameter name="collate" code="5028" type="boolean" optional="yes" description="Set to true to collate multiple copies."/>
		</command>
		<command name="print preview" code="smXL1129" description="Shows a preview of the object as it would look when printed. This function has been deprecated.">
			<direct-parameter type="4003"/>
			<parameter name="enable changes" code="5029" type="boolean" optional="yes" description="Controls access to the page setup dialog and the ability to change margins from the preview window by enabling or disabling the setup and margins buttons, respectively."/>
		</command>
		<command name="protect sharing" code="smXL1827" description="Saves the workbook and protects it for sharing.">
			<direct-parameter type="workbook"/>
			<parameter name="file name" code="5016" type="text" optional="yes" description="A string indicating the name of the saved file. You can include a full path. If you don't, Microsoft Excel saves the file in the current folder."/>
			<parameter name="password" code="5236" type="text" optional="yes" description="A case-sensitive string indicating the protection password to be given to the file. Should be no longer than 15 characters."/>
			<parameter name="write reservation password" code="5242" type="text" optional="yes" description="A string indicating the write-reservation password for this file. If a file is saved with the password and the password isn't supplied when the file is opened, the file is opened read-only."/>
			<parameter name="read only recommended" code="5243" type="boolean" optional="yes" description="Set to true to display a message when the file is opened, recommending that the file be opened read-only."/>
			<parameter name="create backup" code="5244" type="boolean" optional="yes" description="Set to true to create a backup file."/>
			<parameter name="sharing password" code="5294" type="text" optional="yes" description="A string indicating the password to be used to protect the file for sharing."/>
			<parameter name="file format" code="5388" type="XlFileFormat" optional="yes" description="A enum indicating the format of the file for sharing."/>
		</command>
		<command name="protect workbook" code="smXLXPTw" description="Protect workbook structure from changes.">
			<direct-parameter type="workbook"/>
			<parameter name="password" code="5236" type="text" optional="yes" description="A string that specifies a case-sensitive password for the sheet or workbook. If this argument is omitted, you can unprotect the sheet or workbook without using a password. Otherwise, you must specify the password to unprotect the sheet or workbook."/>
			<parameter name="structure" code="5293" type="boolean" optional="yes" description="Set to true to protect the structure of the workbook, the relative position of the sheets. The default value is true."/>
			<parameter name="windows" code="1192" type="boolean" optional="yes" description=" Set to true to protect the workbook windows. If this argument is omitted, the windows aren't protected."/>
		</command>
		<command name="protect worksheet" code="smXLXPTs" description="Protects a worksheet so that it cannot be modified.">
			<direct-parameter type="sheet"/>
			<parameter name="password" code="5236" type="text" optional="yes" description="A string that specifies a case-sensitive password for the sheet or workbook. If this argument is omitted, you can unprotect the sheet or workbook without using a password. Otherwise, you must specify the password to unprotect the sheet or workbook."/>
			<parameter name="drawing objects" code="5237" type="boolean" optional="yes" description="Set to true to protect shapes. The default value is false."/>
			<parameter name="worksheet contents" code="XwsC" type="boolean" optional="yes" description="Set to true to protect contents. The default value is true."/>
			<parameter name="scenarios" code="5239" type="boolean" optional="yes" description="Set to true to protect scenarios. The default value is true."/>
			<parameter name="user interface only" code="5240" type="boolean" optional="yes" description="Set to true to protect the user interface, but not macros. If this argument is omitted, protection applies both to macros and to the user interface."/>
			<parameter name="allow formatting cells" code="5362" type="boolean" optional="yes" description="Set to true to allow user format cells. The default value is false."/>
			<parameter name="allow formatting columns" code="5363" type="boolean" optional="yes" description="Set to true to allow user format columns. The default value is false."/>
			<parameter name="allow formatting rows" code="5364" type="boolean" optional="yes" description="Set to true to allow user format rows. The default value is false."/>
			<parameter name="allow inserting columns" code="5365" type="boolean" optional="yes" description="Set to true to allow user insert columns. The default value is false."/>
			<parameter name="allow inserting rows" code="5366" type="boolean" optional="yes" description="Set to true to allow user insert rows. The default value is false."/>
			<parameter name="allow inserting hyperlinks" code="5367" type="boolean" optional="yes" description="Set to true to allow user insert hyperlinks. The default value is false."/>
			<parameter name="allow deleting columns" code="5368" type="boolean" optional="yes" description="Set to true to allow user delete columns. The default value is false."/>
			<parameter name="allow deleting rows" code="5369" type="boolean" optional="yes" description="Set to true to allow user delete rows. The default value is false."/>
			<parameter name="allow sorting" code="5370" type="boolean" optional="yes" description="Set to true to allow user sort. The default value is false."/>
			<parameter name="allow filtering" code="5371" type="boolean" optional="yes" description="Set to true to allow user use autofilter. The default value is false."/>
			<parameter name="allow using pivot table" code="5372" type="boolean" optional="yes" description="Set to true to allow user use pivotTable reports. The default value is false."/>
		</command>
		<command name="purge change history now" code="smXL1860" description="Removes entries from the change log for the specified workbook.">
			<direct-parameter type="workbook"/>
			<parameter name="days" code="5300" type="integer" description="The number of days that changes in the change log are to be retained."/>
			<parameter name="sharing password" code="5294" type="text" optional="yes" description="The password that unprotects the workbook for sharing. If the workbook is protected for sharing with a password and this argument is omitted, the user is prompted for the password."/>
		</command>
		<command name="refresh" code="smXL1722" description="Updates the pivot table cache or query table.">
			<direct-parameter type="pivot cache"/>
		</command>
		<command name="refresh all" code="smXL1831" description="Refreshes all external data ranges and PivotTables in the workbook.">
			<direct-parameter type="workbook"/>
		</command>
		<command name="refresh data source values" code="smXLCJ59">
			<direct-parameter type="pivot table"/>
		</command>
		<command name="refresh query table" code="smXLXrQT" description="Updates the PivotTable cache or query table.">
			<direct-parameter type="query table"/>
			<parameter name="background query" code="1878" type="boolean" optional="yes" description="Set to true to return control to the procedure as soon as a database connection is made and the query is submitted and the query is updated in the background."/>
			<result type="boolean"/>
		</command>
		<command name="refresh table" code="smXL1905" description="Refreshes the pivot table from the source data. Returns true if it's successful.">
			<direct-parameter type="pivot table"/>
			<result type="boolean"/>
		</command>
		<command name="register xll" code="smXL1299" description="Loads an XLL code resource and automatically registers the functions and commands contained in the resource.">
			<parameter name="filename" code="5016" type="text" description="The file name containing the XLL code resource."/>
			<result type="boolean" description="Specifies success or failure."/>
		</command>
		<command name="reject all changes" code="smXL1862" description="Rejects all changes in the specified shared workbook.">
			<direct-parameter type="workbook"/>
			<parameter name="when" code="5298" type="text" optional="yes" description="Specifies when all the changes are rejected."/>
			<parameter name="who" code="5299" type="text" optional="yes" description="Specifies by whom all the changes are rejected."/>
			<parameter name="where" code="5260" type="text" optional="yes" description="Specifies where all the changes are rejected."/>
		</command>
		<command name="remove all items" code="smXLXrAi" description="Removes all of the strings from the list">
			<direct-parameter type="4019"/>
		</command>
		<command name="remove item" code="smXLXrMI" description="Removes a specified string from the list">
			<direct-parameter type="4020"/>
			<parameter name="entry_index" code="MSix" type="integer" description="The index of the string to be removed."/>
			<parameter name="count" code="1000" type="integer" optional="yes" description="The number of string starting a the index that should be removed.  The default is one."/>
		</command>
		<command name="remove user" code="smXL1834" description="Disconnects the specified user from the shared workbook.">
			<direct-parameter type="workbook"/>
			<parameter name="entry_index" code="MSix" type="integer" description="The user index."/>
		</command>
		<command name="repeat all labels" code="smXLCJ60">
			<direct-parameter type="pivot table"/>
			<parameter name="repeat" code="6042" type="XlPivotFieldRepeatLabels"/>
		</command>
		<command name="reset all page breaks" code="smXL1744" description="Resets all page breaks on the specified worksheet.">
			<direct-parameter type="sheet"/>
		</command>
		<command name="reset colors" code="smXL1863" description="Resets the color palette to the default colors.">
			<direct-parameter type="workbook"/>
		</command>
		<command name="reset timer" code="smXLQtRt" description="Resets the refresh timer for the specified PivotTable report to the last interval you set using the RefreshPeriod property.">
			<direct-parameter type="4024"/>
		</command>
		<command name="resize" code="smXL2510">
			<direct-parameter type="list object"/>
			<parameter name="range" code="5387" type="range" optional="yes"/>
		</command>
		<command name="row axis layout" code="smXLCJ31" description="This method is used for simultaneously setting layout options for all existing PivotFields.">
			<direct-parameter type="pivot table"/>
			<parameter name="layout" code="6037" type="XlLayoutRowType" description="Can be xlCompactRow, xlTabularRow, or xlOutlineRow."/>
		</command>
		<command name="run VB Macro" code="smXL2620" description="Runs a macro or calls a function. This can be used to run a macro written in the Microsoft Excel 4.0 macro language, or to run a function in a DLL or XLL.">
			<direct-parameter type="e297"/>
			<parameter name="arg1" code="5040" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg2" code="5041" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg3" code="5042" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg4" code="5043" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg5" code="5044" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg6" code="5045" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg7" code="5046" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg8" code="5047" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg9" code="5048" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg10" code="5049" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg11" code="5050" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg12" code="5051" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg13" code="5052" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg14" code="5053" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg15" code="5054" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg16" code="5055" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg17" code="5056" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg18" code="5057" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg19" code="5058" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg20" code="5059" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg21" code="5060" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg22" code="5061" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg23" code="5062" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg24" code="5063" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg25" code="5064" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg26" code="5065" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg27" code="5066" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg28" code="5067" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg29" code="5068" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg30" code="5069" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<result type="text" description="The result of the macro call."/>
		</command>
		<command name="run XLM Macro" code="smXL1186" description="Runs a macro or calls a function. This can be used to run a macro written in the Microsoft Excel 4.0 macro language, or to run a function in a DLL or XLL.">
			<direct-parameter type="e297"/>
			<parameter name="arg1" code="5040" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg2" code="5041" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg3" code="5042" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg4" code="5043" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg5" code="5044" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg6" code="5045" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg7" code="5046" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg8" code="5047" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg9" code="5048" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg10" code="5049" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg11" code="5050" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg12" code="5051" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg13" code="5052" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg14" code="5053" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg15" code="5054" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg16" code="5055" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg17" code="5056" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg18" code="5057" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg19" code="5058" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg20" code="5059" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg21" code="5060" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg22" code="5061" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg23" code="5062" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg24" code="5063" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg25" code="5064" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg26" code="5065" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg27" code="5066" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg28" code="5067" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg29" code="5068" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg30" code="5069" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<result type="text" description="The result of the macro call."/>
		</command>
		<command name="save as" code="smXL1659" description="Saves changes into a different file.">
			<direct-parameter type="sheet"/>
			<parameter name="filename" code="5016" type="text" description="A string that indicates the name of the file to be saved. You can include a full path. If you don't, Microsoft Excel saves the file in the current folder."/>
			<parameter name="file format" code="1813" type="XlFileFormat" optional="yes" description="Specifies the file format to use when you save the file."/>
			<parameter name="password" code="5236" type="text" optional="yes" description="A case-sensitive string, no more than 15 characters, that indicates the protection password to be given to the file."/>
			<parameter name="write reservation password" code="5242" type="text" optional="yes" description="A string that indicates the write-reservation password for this file. If a file is saved with the password and the password isn't supplied when the file is opened, the file is opened as read-only."/>
			<parameter name="read only recommended" code="5243" type="boolean" optional="yes" description="Set to true to display a message when the file is opened, recommending that the file be opened as read-only."/>
			<parameter name="create backup" code="5244" type="boolean" optional="yes" description="Set to true to create a backup file."/>
			<parameter name="add to most recently used list" code="5245" type="boolean" optional="yes" description="Set to true to add this workbook to the list of recently used files. The default value is false."/>
			<parameter name="save as local language" code="locl" type="boolean" optional="yes" description="True saves files against the language of Microsoft Excel. False is the default, which saves files against the language of Visual Basic for Applications"/>
		</command>
		<command name="save as ODC" code="smXLCJ86" description="Saves the PivotTable cache source as a Microsoft Office Data Connection file.">
			<direct-parameter type="pivot table"/>
			<parameter name="ODC file name" code="6047" type="text" description="Location to save the file."/>
			<parameter name="description" code="6048" type="text" optional="yes" description="Description that will be saved in the file."/>
			<parameter name="keywords" code="6049" type="text" optional="yes" description="Space-separated keywords that can be used to search for this file."/>
		</command>
		<command name="save workbook as" code="smXLxSwA" description="Saves changes into a different file.">
			<direct-parameter type="workbook"/>
			<parameter name="filename" code="5016" type="text" optional="yes" description="A string that indicates the name of the file to be saved. You can include a full path. If you don't, Microsoft Excel saves the file in the current folder."/>
			<parameter name="file format" code="1813" type="XlFileFormat" optional="yes" description="Specifies the file format to use when you save the file."/>
			<parameter name="password" code="5236" type="text" optional="yes" description="A case-sensitive string, no more than 15 characters, that indicates the protection password to be given to the file."/>
			<parameter name="write reservation password" code="5242" type="text" optional="yes" description="A string that indicates the write-reservation password for this file. If a file is saved with the password and the password isn't supplied when the file is opened, the file is opened as read-only."/>
			<parameter name="read only recommended" code="5243" type="boolean" optional="yes" description="Set to true to display a message when the file is opened, recommending that the file be opened as read-only."/>
			<parameter name="create backup" code="5244" type="boolean" optional="yes" description="Set to true to create a backup file."/>
			<parameter name="access mode" code="5296" type="XlSaveAsAccessMode" optional="yes" description="Specifies the access mode for the new file."/>
			<parameter name="conflict resolution" code="1805" type="XlSaveConflictResolution" optional="yes" description="Specifies who conflict resolutions will be handled."/>
			<parameter name="add to most recently used list" code="5245" type="boolean" optional="yes" description="Set to true to add this workbook to the list of recently used files. The default value is false."/>
		</command>
		<command name="save workspace" code="smXL1302" description="Saves the current workspace.">
			<parameter name="workspace file name" code="WsFN" type="text" optional="yes" description="The saved file name."/>
		</command>
		<command name="scroll workbook tabs" code="smXL1133" description="Scrolls through the workbook tabs at the bottom of the window. Doesn't affect the active sheet in the workbook.">
			<direct-parameter type="window"/>
			<parameter name="sheets" code="5030" type="integer" optional="yes" description="The number of sheets to scroll by. Use a positive number to scroll forward, a negative number to scroll backward, or 0  to not scroll at all. You must specify sheets if you don't specify position."/>
			<parameter name="position" code="5031" type="XLScrollTabPosition" optional="yes" description="Specifies the sheet to scroll to. You must specify position if you don't specify sheets."/>
		</command>
		<command name="send mail" code="smXLSeML" description="Opens a message window in your registered mail program for sending the specified document as an attachment.">
			<direct-parameter type="workbook"/>
		</command>
		<command name="send to back" code="smXL1988" description="Sends the object to the back of the z-order.">
			<direct-parameter type="4015"/>
		</command>
		<command name="set background picture" code="smXL1667" description="Sets the background graphic for a worksheet.">
			<direct-parameter type="sheet"/>
			<parameter name="picture file name" code="XpFN" type="text" optional="yes" description="The name of the graphic file."/>
		</command>
		<command name="set first priority" code="smXL2569" description="Sets this condition to the highest priority.">
			<direct-parameter type="4026"/>
		</command>
		<command name="set last priority" code="smXL2570" description="Sets this condition to the lowest priority.">
			<direct-parameter type="4027"/>
		</command>
		<command name="set list item" code="smXLXSli" description="Set a string in the list">
			<direct-parameter type="4018"/>
			<parameter name="entry_index" code="MSix" type="integer" optional="yes" description="The index of the string to be set."/>
			<parameter name="item text" code="5038" type="text" description="The new text to be set."/>
		</command>
		<command name="set sort range" code="smXL2516" description="Sets the starting and ending character positions for Sort object.">
			<direct-parameter type="sort"/>
			<parameter name="rng" code="5379" type="range" description="Specifies the range for the sort object."/>
		</command>
		<command name="set subtotals" code="smXL1956" description="Sets subtotals displayed with the specified field. Valid only for nondata fields.">
			<direct-parameter type="pivot field"/>
			<parameter name="subtotal index" code="XSTT" type="XLSubTotalType" optional="yes" description="Specifies the subtotal to be set as follows: 1 automatic, 2  sum, 3  count, 4 average, 5  max, 6  min, 7  product, 8  count nums, 9  StdDev, 10  StdDevp, 11  Var, 12  Varp."/>
			<parameter name="value" code="XSTv" type="boolean" description="Specifies the subtotal to be set as follows: 1 automatic, 2  sum, 3  count, 4 average, 5  max, 6  min, 7  product, 8  count nums, 9  StdDev, 10  StdDevp, 11  Var, 12  Varp."/>
		</command>
		<command name="show" code="smXL1613" description="Displays the built-in dialog box and waits for the user to input data.">
			<direct-parameter type="4023"/>
		</command>
		<command name="show all" code="smXL2532" description="Show all the hidden data, but do not exist the filter mode">
			<direct-parameter type="specifier"/>
		</command>
		<command name="show all data" code="smXL1750" description="Makes all rows of the currently filtered list visible. If autofilter is in use, this method changes the arrows to All.">
			<direct-parameter type="sheet"/>
		</command>
		<command name="show custom view" code="smXLXsCv" description="Displays the custom view">
			<direct-parameter type="custom view"/>
		</command>
		<command name="show data form" code="smXL1751" description="Displays the data form associated with the worksheet.">
			<direct-parameter type="sheet"/>
		</command>
		<command name="show levels" code="smXL2049" description="Displays the specified number of row and/or column levels of an outline.">
			<direct-parameter type="outline"/>
			<parameter name="row levels" code="5316" type="integer" optional="yes" description="Specifies the number of row levels of an outline to display. If the outline has fewer levels than the number specified, Microsoft Excel displays all the levels. If this argument is zero or is omitted, no action is taken on rows."/>
			<parameter name="column levels" code="5317" type="integer" optional="yes" description="Specifies the number of column levels of an outline to display. If the outline has fewer levels than the number specified, Microsoft Excel displays all the levels. If this argument is zero or is omitted, no action is taken on columns."/>
		</command>
		<command name="show pages" code="smXL1894" description="Creates a new pivot table for each item in the page field. Each new pivot table is created on a new worksheet.">
			<direct-parameter type="pivot table"/>
			<parameter name="page field" code="5311" type="text" optional="yes" description="A string that names a single page field in the pivot table."/>
		</command>
		<command name="small scroll" code="smXL1135" description="Scrolls the contents of the window by rows or columns.">
			<direct-parameter type="4022"/>
			<parameter name="down" code="5018" type="integer" optional="yes" description="The number of rows to scroll the contents down."/>
			<parameter name="up" code="5019" type="integer" optional="yes" description="The number of rows to scroll the contents up."/>
			<parameter name="to right" code="5020" type="integer" optional="yes" description="The number of rows to scroll the contents to the right."/>
			<parameter name="to left" code="5021" type="integer" optional="yes" description="The number of rows to scroll the contents to the left."/>
		</command>
		<command name="subtotal location" code="smXLCJ32" description="This method changes the subtotal location for all existing PivotFields.">
			<direct-parameter type="pivot table"/>
			<parameter name="location" code="6038" type="XlSubtototalLocationType" description="xlSubtotalLocationType can be either xlAtTop or xlAtBottom."/>
		</command>
		<command name="toggle forms design" code="smXLXPTz" description="Toggles Microsoft Office Excel into and out of design mode.">
			<direct-parameter type="workbook"/>
		</command>
		<command name="undo" code="smXL1318" description="Cancels the last user-interface action."/>
		<command name="union" code="smXL1191" description="Returns the union of two or more ranges.">
			<parameter name="range1" code="XLr1" type="range" description="One of the ranges that will be put into the union range."/>
			<parameter name="range2" code="XLr2" type="range" description="One of the ranges that will be put into the union range."/>
			<parameter name="range3" code="XLr3" type="range" optional="yes" description="One of the ranges that will be put into the union range."/>
			<parameter name="range4" code="XLr4" type="range" optional="yes" description="One of the ranges that will be put into the union range."/>
			<parameter name="range5" code="XLr5" type="range" optional="yes" description="One of the ranges that will be put into the union range."/>
			<parameter name="range6" code="XLr6" type="range" optional="yes" description="One of the ranges that will be put into the union range."/>
			<parameter name="range7" code="XLr7" type="range" optional="yes" description="One of the ranges that will be put into the union range."/>
			<parameter name="range8" code="XLr8" type="range" optional="yes" description="One of the ranges that will be put into the union range."/>
			<parameter name="range9" code="XLr9" type="range" optional="yes" description="One of the ranges that will be put into the union range."/>
			<parameter name="range10" code="Xr10" type="range" optional="yes" description="One of the ranges that will be put into the union range."/>
			<parameter name="range11" code="Xr11" type="range" optional="yes" description="One of the ranges that will be put into the union range."/>
			<parameter name="range12" code="Xr12" type="range" optional="yes" description="One of the ranges that will be put into the union range."/>
			<parameter name="range13" code="Xr13" type="range" optional="yes" description="One of the ranges that will be put into the union range."/>
			<parameter name="range14" code="Xr14" type="range" optional="yes" description="One of the ranges that will be put into the union range."/>
			<parameter name="range15" code="Xr15" type="range" optional="yes" description="One of the ranges that will be put into the union range."/>
			<parameter name="range16" code="Xr16" type="range" optional="yes" description="One of the ranges that will be put into the union range."/>
			<parameter name="range17" code="Xr17" type="range" optional="yes" description="One of the ranges that will be put into the union range."/>
			<parameter name="range18" code="Xr18" type="range" optional="yes" description="One of the ranges that will be put into the union range."/>
			<parameter name="range19" code="Xr19" type="range" optional="yes" description="One of the ranges that will be put into the union range."/>
			<parameter name="range20" code="Xr20" type="range" optional="yes" description="One of the ranges that will be put into the union range."/>
			<parameter name="range21" code="Xr21" type="range" optional="yes" description="One of the ranges that will be put into the union range."/>
			<parameter name="range22" code="Xr22" type="range" optional="yes" description="One of the ranges that will be put into the union range."/>
			<parameter name="range23" code="Xr23" type="range" optional="yes" description="One of the ranges that will be put into the union range."/>
			<parameter name="range24" code="Xr24" type="range" optional="yes" description="One of the ranges that will be put into the union range."/>
			<parameter name="range25" code="Xr25" type="range" optional="yes" description="One of the ranges that will be put into the union range."/>
			<parameter name="range26" code="Xr26" type="range" optional="yes" description="One of the ranges that will be put into the union range."/>
			<parameter name="range27" code="Xr27" type="range" optional="yes" description="One of the ranges that will be put into the union range."/>
			<parameter name="range28" code="Xr28" type="range" optional="yes" description="One of the ranges that will be put into the union range."/>
			<parameter name="range29" code="Xr29" type="range" optional="yes" description="One of the ranges that will be put into the union range."/>
			<parameter name="range30" code="Xr30" type="range" optional="yes" description="One of the ranges that will be put into the union range."/>
			<result type="range" description="A range object that is the union of the supplied range objects."/>
		</command>
		<command name="unprotect" code="smXL1660" description="Removes protection from a sheet or workbook. This method has no effect if the sheet or workbook isn't protected.">
			<direct-parameter type="4005"/>
			<parameter name="password" code="5236" type="text" optional="yes" description="A string that denotes the case-sensitive password to use to unprotect the sheet or workbook.  If you omit this argument for a sheet that's protected with a password, you'll be prompted for the password."/>
		</command>
		<command name="unprotect sharing" code="smXL1847" description="Turns off protection for sharing and saves the workbook.">
			<direct-parameter type="workbook"/>
			<parameter name="sharing password" code="5294" type="text" optional="yes" description="The workbook password."/>
		</command>
		<command name="update" code="smXL1938" description="Updates the link or pivot table.">
			<direct-parameter type="pivot table"/>
		</command>
		<command name="update from file" code="smXL1848" description="Updates a read-only workbook from the saved disk version of the workbook if the disk version is more recent than the copy of the workbook that is loaded in memory.">
			<direct-parameter type="workbook"/>
		</command>
		<command name="update link" code="smXL1849" description="Updates a Microsoft Excel  link.">
			<direct-parameter type="workbook"/>
			<parameter name="name" code="pnam" type="text" optional="yes" description="The name of the Microsoft Excel link to be updated, as returned from the link sources method."/>
			<parameter name="type" code="5103" type="XlLinkType" optional="yes" description="The link type."/>
		</command>
		<command name="use default folder suffix" code="smXL2408" description="Sets the folder suffix for the specified document to the default suffix for the language support you have selected or installed.">
			<direct-parameter type="web options"/>
		</command>
		<command name="web page preview" code="smXL1868" description="Displays a preview of the specified workbook as it would look if saved as a Web page.">
			<direct-parameter type="workbook"/>
		</command>
		<class name="Excel comment" code="X229" description="Represents a cell comment." plural="Excel comments">
			<property name="author" code="2123" type="text" access="r" description="Returns the author of the comment."/>
			<property name="shape object" code="2124" type="shape" access="r" description="Returns a shape object that represents the shape attached to the specified comment."/>
			<property name="visible" code="pvis" type="boolean" description="Returns or sets if the specified object is visible."/>
		</class>
		<class name="ODBC error" code="X235" plural="ODBC errors">
			<property name="error string" code="1920" type="text" access="r" description="Returns the ODBC error string."/>
			<property name="sql state" code="2167" type="text" access="r" description="Returns the SQL state error."/>
		</class>
		<class name="Protection" code="Xpot" description="Represents the various types of protection options available for a worksheet">
			<property name="allow deleting columns" code="2442" type="boolean" access="r" description="Returns True if the deleting of columns is allowed on a protected worksheet. Read-only Boolean."/>
			<property name="allow deleting rows" code="2443" type="boolean" access="r" description="Returns True if the deleting of rows is allowed on a protected worksheet. Read-only Boolean."/>
			<property name="allow filtering" code="2445" type="boolean" access="r" description="Returns True if the filtering is allowed on a protected worksheet. Read-only Boolean."/>
			<property name="allow formatting cells" code="2436" type="boolean" access="r" description="Returns True if the formatting of cells is allowed on a protected worksheet. Read-only Boolean."/>
			<property name="allow formatting columns" code="2437" type="boolean" access="r" description="Returns True if the formatting of columns is allowed on a protected worksheet. Read-only Boolean."/>
			<property name="allow formatting rows" code="2438" type="boolean" access="r" description="Returns True if the formatting of rows is allowed on a protected worksheet. Read-only Boolean."/>
			<property name="allow inserting columns" code="2439" type="boolean" access="r" description="Returns True if the inserting of columns is allowed on a protected worksheet. Read-only Boolean."/>
			<property name="allow inserting hyperlinks" code="2441" type="boolean" access="r" description="Returns True if the inserting of hyperlinks is allowed on a protected worksheet. Read-only Boolean."/>
			<property name="allow inserting rows" code="2440" type="boolean" access="r" description="Returns True if the inserting of rows is allowed on a protected worksheet. Read-only Boolean."/>
			<property name="allow sorting" code="2444" type="boolean" access="r" description="Returns True if the sorting is allowed on a protected worksheet. Read-only Boolean."/>
			<property name="allow using pivot table" code="2446" type="boolean" access="r" description="Returns True if the using of pivot table is allowed on a protected worksheet. Read-only Boolean."/>
		</class>
		<class name="above average format condition" code="X322">
			<property name="above or below" code="2604" type="XlAboveBelow"/>
			<property name="applies to" code="2568" type="range" access="r" description="Returns the range this format condition applies to. Read Only."/>
			<property name="calc for" code="2603" type="XlCalcFor"/>
			<property name="font object" code="XftO" type="font" access="r" description="Returns a font object that represents the font of the specified object."/>
			<property name="format condition priority" code="2566" type="integer" description="Specifies the priority for the format condition. Read/Write."/>
			<property name="format condition type" code="2119" type="XlFormatConditionType" access="r" description="Return the conditional format type."/>
			<property name="interior object" code="XitO" type="interior" access="r" description="Returns an interior object that represents the interior of the specified object."/>
			<property name="number format" code="1593" type="text" description="Returns or sets the format code for the object."/>
			<property name="number of standard deviations" code="2605" type="integer"/>
			<property name="pivot condition scope type" code="2574" type="XlPivotConditionScope" description="Returns or sets the part of the pivot table that the pivot table format condition is scoped to"/>
			<property name="pivot table condition" code="2573" type="boolean" access="r" description="Tells whether this format condition is a pivot table condition."/>
			<property name="stop if true" code="2567" type="boolean" access="r" description="Tells whether the processing of format conditions stops if this condition is true. Read Only."/>
		</class>
		<class name="active filter" code="Y903" inherits="pivot filter" plural="active filters"/>
		<class name="add in" code="X133" description="Represents a single add-in, either installed or not installed." plural="add ins">
			<property name="full name" code="1773" type="text" access="r" description="Returns the name of the add in, including its path on disk, as a string."/>
			<property name="installed" code="1774" type="boolean" description="Returns or sets if the add in is installed."/>
			<property name="name" code="pnam" type="text" access="r" description="Returns the name of the object."/>
			<property name="path" code="1289" type="text" access="r" description="Returns the complete path of the object, excluding the final separator and name of the add in."/>
		</class>
		<class name="application" code="capp" description="A representation of the Microsoft Excel application." inherits="application" plural="applications">
			<element type="add in"/>
			<element type="chart sheet"/>
			<element type="command bar"/>
			<element type="named item"/>
			<element type="range"/>
			<element type="cell"/>
			<element type="row"/>
			<element type="column"/>
			<element type="window"/>
			<element type="workbook"/>
			<element type="sheet"/>
			<element type="worksheet"/>
			<element type="international macro sheet"/>
			<element type="macro sheet"/>
			<element type="recent file"/>
			<element type="ODBC error"/>
			<property name="AutoFormatAsYouTypeReplaceHyperlinks" code="LLnm" type="boolean" description="True if Microsoft Excel automatically formats hyperlinks as you type. False if Excel does not automatically format hyperlinks as you type."/>
			<property name="Excel cursor" code="1219" type="XlMousePointer" description="Returns or sets the appearance of the mouse pointer in Microsoft Excel."/>
			<property name="ODBC timeout" code="1282" type="integer" description="Returns or sets the ODBC query time limit, in seconds. The default value is 45 seconds. "/>
			<property name="active cell" code="1104" type="cell" access="r" description="Returns a range object that represents the active cell in the active window, the window on top, or in the specified window. If the window isn't displaying a worksheet, this property fails."/>
			<property name="active chart" code="1105" type="chart" access="r" description="Returns a chart object that represents the active chart, either an embedded chart or a chart sheet. An embedded chart is considered active when it's either selected or activated."/>
			<property name="active printer" code="1170" type="text" description="Returns or sets the name of the active printer."/>
			<property name="active sheet" code="1107" type="sheet" access="r" description="Returns an object that represents the active sheet, the sheet on top, in the active workbook or in the specified window or workbook."/>
			<property name="active window" code="1171" type="window" access="r" description="Returns a window object that represents the active window, the window on top."/>
			<property name="active workbook" code="1172" type="workbook" access="r" description="Returns a workbook object that represents the workbook in the active window, the window on top."/>
			<property name="alert before overwriting" code="1201" type="boolean" description="Returns or sets if Microsoft Excel displays a message before overwriting nonblank cells during a drag-and-drop editing operation."/>
			<property name="alt startup path" code="1202" type="text" description="Returns or sets the name of the alternate startup folder."/>
			<property name="arbitrary XML support available" code="LLnp" type="boolean" access="r" description="Returns a Boolean value that indicates whether the XML features in Microsoft Excel are available"/>
			<property name="ask to update links" code="1203" type="boolean" description="Returns or sets if Microsoft Excel asks the user to update links when opening files with links."/>
			<property name="autocorrect object" code="XocO" type="autocorrect" access="r" description="Returns an autocorrect object that represents the Microsoft Excel AutoCorrect attributes."/>
			<property name="automation security" code="Xaso" type="MsoAutomationSecurity"/>
			<property name="build" code="1206" type="integer" access="r" description="Returns the Microsoft Excel build number."/>
			<property name="calculate before save" code="1207" type="boolean" description="Returns or sets if workbooks are calculated before they're saved to disk."/>
			<property name="calculation" code="1208" type="XlCalculation" description="Returns or sets the calculation mode."/>
			<property name="calculation version" code="1339" type="integer" access="r" description="Returns a number whose rightmost four digits are the minor calculation engine version number, and whose other digits, on the left, are the major version of Microsoft Excel."/>
			<property name="caption" code="1108" type="text" access="r" description="Returns the name of the application."/>
			<property name="cell drag and drop" code="1210" type="boolean" description="Returns or sets if dragging and dropping cells is enabled."/>
			<property name="command underlines" code="1215" type="XlCommandUnderlines" description="Returns or sets the state of the command underlines in Microsoft Excel."/>
			<property name="copy objects with cells" code="1218" type="boolean" description="Returns or sets if objects are cut, copied, extracted, and sorted with cells."/>
			<property name="custom list count" code="1220" type="integer" access="r" description="Returns the number of defined custom lists, including built-in lists."/>
			<property name="cut copy mode" code="1221" type="XlCutCopyMode" description="Returns or sets the status of cut or copy mode."/>
			<property name="data entry mode" code="1222" type="XLDataEntryMode" description="Returns or sets data entry mode, as shown in the following table. When in data entry mode, you can enter data only in the unlocked cells in the currently selected range. "/>
			<property name="default file path" code="1234" type="text" description="Returns or sets the default path that Microsoft Excel uses when it opens files. "/>
			<property name="default save format" code="1314" type="XlFileFormat" description="Returns or sets the default format for saving files."/>
			<property name="default web options object" code="1332" type="default web options" access="r" description="Returns the default web object."/>
			<property name="display alerts" code="1238" type="boolean" description="Returns or sets if Microsoft Excel displays certain alerts and messages while handling events from AppleScript."/>
			<property name="display comment indicator" code="1242" type="XlCommentDisplayMode" description="Returns or sets the way cells display comments and indicators."/>
			<property name="display excel 4 menus" code="1243" type="boolean" description="Returns or sets if Microsoft Excel displays version 4.0 menu bars."/>
			<property name="display formula bar" code="XdFb" type="boolean" description="Returns or sets  if the formula bar is displayed."/>
			<property name="display full screen" code="1240" type="boolean" description="Returns or sets if Microsoft Excel is in full-screen mode."/>
			<property name="display function tooltips" code="XdfT" type="boolean" description="Returns or sets if function tool tips can be displayed."/>
			<property name="display insert options" code="XdIo" type="boolean" description="Returns or sets if the insert options button should be displayed. "/>
			<property name="display note indicator" code="1241" type="boolean" description="Returns or sets if cells containing notes display cell tips and contain note indicators, small dots in their upper-right corners."/>
			<property name="display recent files" code="1244" type="boolean" description="Returns or sets if the list of recently used files is displayed on the file menu."/>
			<property name="display scroll bars" code="1245" type="boolean" description="Returns or sets if scroll bars are visible for all workbooks."/>
			<property name="display status bar" code="1246" type="boolean" description="Returns or sets if the status bar is displayed."/>
			<property name="edit directly in cell" code="1248" type="boolean" description="Returns or sets if Microsoft Excel allows editing in cells."/>
			<property name="enable animations" code="1204" type="boolean" description="Returns or sets if animated insertion and deletion is enabled."/>
			<property name="enable autocomplete" code="1249" type="boolean" description="Returns or sets if the autocomplete feature is enabled."/>
			<property name="enable cancel key" code="1250" type="XlEnableCancelKey" description="Controls how Microsoft Excel handles CTRL-BREAK, ESC, or cmd-period user interruptions to the running procedure."/>
			<property name="enable events" code="1331" type="boolean" description="Returns or sets if events are enabled for the application object."/>
			<property name="enable sound" code="1251" type="boolean" description="Returns or sets if sound is enabled for Microsoft Office."/>
			<property name="extend list" code="1335" type="boolean" description="Returns or sets if Microsoft Excel automatically extends formatting and formulas to new data that is added to a list."/>
			<property name="fixed decimal" code="1255" type="boolean" description="All data entered after this property is set to true will be formatted with the number of fixed decimal places set by the fixed decimal places property."/>
			<property name="fixed decimal places" code="1256" type="integer" description="Returns or sets the number of fixed decimal places used when the fixed decimal property is set to true."/>
			<property name="frontmost" code="pisf" type="null" access="r" description="Returns if the application is the frontmost window."/>
			<property name="include empty cells in lists" code="XiEc" type="boolean" description="Returns or sets if empty cells are included in range lists."/>
			<property name="iteration" code="1267" type="boolean" description="Returns or sets  if Microsoft Excel will use iteration to resolve circular references."/>
			<property name="library path" code="1268" type="text" access="r" description="Returns the path to the Library folder."/>
			<property name="math coprocessor available" code="1270" type="boolean" access="r" description="Returns true if a math coprocessor is available."/>
			<property name="max change" code="1271" type="real" description="Returns or sets the maximum amount of change between each iteration as Microsoft Excel resolves circular references. "/>
			<property name="max iterations" code="1272" type="integer" description="Returns or sets the maximum number of iterations that Microsoft Excel can use to resolve a circular reference."/>
			<property name="measurement unit" code="1342" type="integer" description="Returns or set the current unit of measure."/>
			<property name="memory free" code="1273" type="integer" access="r" description="Returns the amount of memory that's still available for Microsoft Excel to use, in bytes."/>
			<property name="memory total" code="1274" type="integer" access="r" description="Returns the total amount of memory, in bytes, that's available to Microsoft Excel, including memory already in use."/>
			<property name="memory used" code="1275" type="integer" access="r" description="Returns the amount of memory that Microsoft Excel is currently using, in bytes."/>
			<property name="move after return" code="1277" type="boolean" description="Returns or sets if the active cell will be moved as soon as the ENTER/RETURN key is pressed."/>
			<property name="move after return direction" code="1278" type="XlDirection" description="Returns or sets the direction in which the active cell is moved when the user presses ENTER."/>
			<property name="name" code="pnam" type="text" access="r" description="Returns the name of the application."/>
			<property name="network templates path" code="1280" type="text" access="r" description="Returns the network path where templates are stored. If the network path doesn't exist, this property returns an empty string. "/>
			<property name="operating system" code="1287" type="text" access="r" description="Returns the name and version number of the current operating system."/>
			<property name="organization name" code="1288" type="text" access="r" description="Returns the registered organization name."/>
			<property name="path" code="1289" type="text" access="r" description="Returns the complete path of the application, excluding the final separator and name of the application."/>
			<property name="path separator" code="1290" type="text" access="r" description="Returns the path separator character."/>
			<property name="pivot table selection" code="1292" type="boolean" description="Returns or sets if pivot tables use structured selection."/>
			<property name="prompt for summary info" code="1293" type="boolean" description="Returns or sets if Microsoft Excel asks for summary information when files are first saved."/>
			<property name="reference style" code="1297" type="XlReferenceStyle" description="Returns or sets how Microsoft Excel displays cell references and row and column headings in either A1 or R1C1 reference style."/>
			<property name="roll zoom" code="1301" type="boolean" description="Returns or sets if the IntelliMouse zooms instead of scrolling."/>
			<property name="screen updating" code="1303" type="boolean" description="Returns or sets if screen updating is turned on. Turn screen updating off to speed up your AppleScript code. You won't be able to see what the code is doing, but it will run faster."/>
			<property name="selection" code="sele" type="range" access="r" description="Returns the selected object in the active window."/>
			<property name="sheets in new workbook" code="1305" type="integer" description="Returns or sets the number of sheets that Microsoft Excel automatically inserts into new workbooks."/>
			<property name="show chart tip names" code="1306" type="boolean" description="Returns or sets if charts show chart tip names."/>
			<property name="show chart tip values" code="1307" type="boolean" description="Returns or sets if charts show chart tip values."/>
			<property name="show tool tips" code="1313" type="boolean" description="Returns or sets if tool tips are turned on."/>
			<property name="spelling options" code="xlsp" type="xlspelling options" access="r" description="Returns the default spelling options object."/>
			<property name="standard font" code="1308" type="text" description="Returns or sets the name of the standard font."/>
			<property name="standard font size" code="1309" type="real" description="Returns or sets the standard font size, in points."/>
			<property name="startup dialog" code="1337" type="boolean" description="Returns or sets if the startup dialog should be shown when starting up the application."/>
			<property name="startup path" code="1310" type="text" access="r" description="Returns the complete path of the startup folder, excluding the final separator."/>
			<property name="status bar" code="1311" type="text" description="Returns or sets the text in the status bar."/>
			<property name="templates path" code="1312" type="text" access="r" description="Returns the local path where templates are stored."/>
			<property name="this cell" code="LLnn" type="null" access="r" description="Returns the cell in which the user-defined function is being called from as a Range object."/>
			<property name="transition menu key" code="1315" type="text" description="Returns or sets the alternate menu or help key."/>
			<property name="transition menu key action" code="1316" type="XLTransitionMenuKeyAction" description="Returns or sets the action taken when the alternate menu key is pressed."/>
			<property name="usable height" code="1143" type="real" access="r" description="Returns the maximum height of the space that a window can occupy in points."/>
			<property name="usable width" code="1144" type="real" access="r" description="Returns the maximum width of the space that a window can occupy in points."/>
			<property name="user name" code="1320" type="text" description="Returns or sets the name of the current user."/>
		</class>
		<class name="autofilter" code="X240" description="Represents autofiltering for the specified worksheet." plural="autofilters">
			<element type="filter"/>
			<property name="autofiltermode" code="2530" type="boolean" access="r" description="Returns True if filters have been defined else False."/>
			<property name="range object" code="2180" type="range" access="r" description="Returns a range object that represents the range to which the specified autofilter applies."/>
			<property name="sort object" code="2533" type="sort" access="r" description="Returns the sort object in the auto filter object."/>
		</class>
		<class name="border" code="X251" description="Represents the border of an object." plural="borders">
			<property name="color" code="colr" description="Returns or sets the primary color of the object. ">
				<type type="integer" list="yes"/>
			</property>
			<property name="color index" code="1098" type="XlColorIndex" description="Returns or sets the color of the border. The color is specified as an index value into the current color palette."/>
			<property name="line style" code="XlnS" type="XlLineStyle" description="Returns or sets the line style for the border."/>
			<property name="theme color" code="DThC" type="XlThemeColor" description="Returns or sets the theme color in the applied color scheme that is associated with the specified object."/>
			<property name="tint and shade" code="2535" type="real" description="Returns or sets a Single that lightens or darkens a color."/>
			<property name="weight" code="1031" type="XlBorderWeight" description="Returns or sets the weight of the border."/>
		</class>
		<class name="button" code="Xbtn" description="Represents a button control." plural="buttons">
			<element type="character"/>
			<property name="accelerator" code="1996" type="text" description="Returns or sets the accelerator character for this control."/>
			<property name="add indent" code="1514" type="boolean" description="Returns or sets if text is automatically indented when the text alignment in a cell is set to equal distribution either horizontally or vertically."/>
			<property name="auto scale font" code="1992" type="boolean" description="Returns or sets  if the text in the object changes font size when the object size changes."/>
			<property name="auto size" code="1993" type="boolean" description="Returns or sets if the size of the specified object is changed automatically to fit text within its boundaries."/>
			<property name="bottom right cell" code="1983" type="range" access="r" description="Returns the bottom right cell of the range the control is occupying."/>
			<property name="cancel button" code="1997" type="boolean" description="Returns or sets if this button is the cancel button."/>
			<property name="caption" code="1108" type="text" description="Returns or sets the caption for this object."/>
			<property name="control text" code="XcTx" type="text" description="Returns or sets the default text for the control. "/>
			<property name="default button" code="1998" type="boolean" description="Returns or sets if this button is the default button."/>
			<property name="dismiss button" code="1999" type="boolean" description="Returns or sets if this button is the dismiss button."/>
			<property name="enabled" code="enbl" type="boolean" description="Returns or sets if the object is enabled."/>
			<property name="entry_index" code="MSix" type="integer" access="r" description="Returns the index number of the object within the elements of the parent object."/>
			<property name="font object" code="XftO" type="font" access="r" description="Returns a font object that represents the font of the specified object."/>
			<property name="formula" code="1562" type="text" description="Returns or sets the object's formula, in A1-style notation and in the language of the macro."/>
			<property name="height" code="hght" type="real" description="Returns or set the height of the object."/>
			<property name="help button" code="2000" type="boolean" description="Returns or sets if this button is the help button."/>
			<property name="horizontal alignment" code="1575" type="XlHAlign" description="Returns or sets the horizontal alignment for the object."/>
			<property name="left position" code="plft" type="real" description="Returns or sets the position of the specified object, in points."/>
			<property name="locked" code="1584" type="boolean" description="Returns or sets if the object is locked, if false the object can be modified when the sheet is protected."/>
			<property name="locked text" code="1994" type="boolean" description="Returns or sets whether the control's text is locked for editing."/>
			<property name="name" code="pnam" type="text" description="Returns or sets the name of the object."/>
			<property name="on action" code="BCOa" type="text" description="Returns or sets the name of a string of AppleScript commands that will be executed when the object is clicked on. Please note that if AppleScript commands are set they will not be saved with the document."/>
			<property name="orientation" code="1596" type="XlOrientation" description="May also be a number value from -90 to 90 degrees."/>
			<property name="phonetic accelerator" code="2001" type="text" description="Returns or sets the link to a range."/>
			<property name="placement" code="1986" type="XlPlacement" description="Returns or sets how the object is placed on the worksheet."/>
			<property name="print object" code="1987" type="boolean" description="Returns or sets if this object is printed."/>
			<property name="reading order" code="1639" type="XLDefaultSheetDir" description="Returns or sets the reading order for the specified object."/>
			<property name="top" code="ptop" type="real" description="Returns the top position of the specified object, in points."/>
			<property name="top left cell" code="1989" type="range" access="r" description="Returns a range object that represents the cell that lies under the upper-left corner of the specified object. "/>
			<property name="vertical alignment" code="1631" type="XlVerticalAlignmentTarget" description="Returns or sets the vertical alignment of the object."/>
			<property name="visible" code="pvis" type="boolean" description="Returns or sets if the object is visible."/>
			<property name="width" code="pwid" type="real" description="Returns or sets  the width of the object."/>
			<property name="z order position" code="2364" type="integer" access="r" description="Returns the z-order position of the object."/>
		</class>
		<class name="calculated field" code="XPFc" inherits="pivot field" plural="calculated fields"/>
		<class name="calculated item" code="XPIi" inherits="pivot item" plural="calculated items"/>
		<class name="calculated member" code="X901" description="Represents the calculated fields and calculated items for PivotTables with Online Analytical Processing data sources." plural="calculated members">
			<property name="_default" code="CL12" type="text" access="r"/>
			<property name="display folder" code="CL15" type="text" access="r" description="An ST_Xstring attribute that specifies the display folder of this PivotTable named set."/>
			<property name="dynamic" code="CL14" type="boolean" access="r"/>
			<property name="flatten hierarchies" code="CL17" type="boolean" access="r"/>
			<property name="formula" code="CL08" type="text" access="r" description="Returns the member's formula in multidimensional expressions syntax."/>
			<property name="hierarchize distinct" code="CL16" type="boolean" access="r"/>
			<property name="is valid" code="CL11" type="boolean" access="r" description="Returns a Boolean that indicates whether the specified calculated member has been successfully instantiated with the OLAP provider during the current session."/>
			<property name="name" code="CL07" type="text" access="r" description="Calculated Member Name."/>
			<property name="solve order" code="CL10" type="integer" access="r" description="Calculated Members Solve Order."/>
			<property name="source name" code="1954" type="text" access="r" description="Returns the specified object's name as it appears in the original source data for the specified PivotTable report."/>
			<property name="type" code="CL13" type="XlCalculatedMemberType" access="r"/>
		</class>
		<class name="checkbox" code="Xckb" plural="checkboxes">
			<element type="character"/>
			<property name="accelerator" code="1996" type="text" description="Returns or sets the accelerator character for this control."/>
			<property name="border" code="X251" type="border" access="r" description="Returns a border object that represents the border of the object. "/>
			<property name="bottom right cell" code="1983" type="range" access="r" description="Returns the bottom right cell of the range the control is occupying."/>
			<property name="caption" code="1108" type="text" description="Returns or sets the caption for this object."/>
			<property name="control text" code="XcTx" type="text" description="Returns or sets the default text for the control. "/>
			<property name="display threeD shading" code="2002" type="boolean"/>
			<property name="enabled" code="enbl" type="boolean" description="Returns or sets if the control is enabled"/>
			<property name="entry_index" code="MSix" type="integer" access="r" description="Returns the index number of the object within the elements of the parent object."/>
			<property name="height" code="hght" type="real" description="Returns or sets the height of the control."/>
			<property name="interior object" code="XitO" type="interior" access="r" description="Returns an interior object that represents the interior of the specified object."/>
			<property name="left position" code="plft" type="real" description="Returns or sets the left position of the control"/>
			<property name="linked cell" code="2003" type="text"/>
			<property name="locked" code="1584" type="boolean" description="Returns or sets whether the control is locked for editing."/>
			<property name="locked text" code="1994" type="boolean" description="Returns or sets whether the control's text is locked for editing."/>
			<property name="name" code="pnam" type="text" description="Returns or sets the name of this control"/>
			<property name="on action" code="BCOa" type="text" description="Returns or sets the name of a string of AppleScript commands that will be executed when the object is clicked on. Please note that if AppleScript commands are set they will not be saved with the document."/>
			<property name="phonetic accelerator" code="2001" type="text" description="Returns or sets the link to a range."/>
			<property name="placement" code="1986" type="XlPlacement" description="Returns or sets how the object is placed on the worksheet."/>
			<property name="print object" code="1987" type="boolean" description="Returns or sets if this object is printed."/>
			<property name="top" code="ptop" type="real" description="Returns or sets the position of the top of the control."/>
			<property name="top left cell" code="1989" type="range" access="r" description="Returns the top left cell of the range within which the control is positioned."/>
			<property name="value" code="DPVu" type="XlCheckBoxState"/>
			<property name="visible" code="pvis" type="boolean" description="Returns or sets the current value of the control"/>
			<property name="width" code="pwid" type="real" description="Returns or sets  the width of the object."/>
			<property name="z order position" code="2364" type="integer" access="r" description="Returns the most recently set z order position, bring shape to front/send shape to back/bring shape forward/send shape backward/bring shape in front of text/send shape behind text."/>
		</class>
		<class name="child item" code="XPIc" inherits="pivot item" plural="child items"/>
		<class name="color scale criteria" code="X310"/>
		<class name="color scale criterion" code="X311">
			<property name="color scale criterion index" code="2575" type="integer" access="r" description="The index of the color scale criterion. Read only."/>
			<property name="color scale criterion type" code="2576" type="XlConditionValueTypes" description="Returns or sets the condition value type of the color scale criterion. Read/Write."/>
			<property name="color scale criterion value" code="2577" type="any"/>
			<property name="format color" code="X307" type="format color" access="r" description="Returns the FormatColor for the ColorScaleCriterion object."/>
		</class>
		<class name="color scale format condition" code="X325">
			<property name="applies to" code="2568" type="range" access="r" description="Returns the range this format condition applies to. Read Only."/>
			<property name="color scale criteria" code="X310" type="color scale criteria" access="r" description="Returns the ColorScaleCriteria for the ColorScale object."/>
			<property name="color scale type" code="2609" type="integer"/>
			<property name="format condition priority" code="2566" type="integer" description="Specifies the priority for the format condition. Read/Write."/>
			<property name="format condition type" code="2119" type="XlFormatConditionType" access="r" description="Return the conditional format type."/>
			<property name="formula" code="1562" type="text" description="Returns or sets the value or expression associated with the conditional format or data validation."/>
			<property name="pivot condition scope type" code="2574" type="XlPivotConditionScope" description="Returns or sets the part of the pivot table that the pivot table format condition is scoped to"/>
			<property name="pivot table condition" code="2573" type="boolean" access="r" description="Tells whether this format condition is a pivot table condition."/>
			<property name="stop if true" code="2567" type="boolean" access="r" description="Tells whether the processing of format conditions stops if this condition is true. Read Only."/>
		</class>
		<class name="colorstop" code="X305" description="Represents the color stop point for a gradient fill in an range or selection.">
			<property name="color" code="colr" description="Returns or sets the primary color of the object.">
				<type type="integer" list="yes"/>
			</property>
			<property name="colorstop position" code="2548" type="real" description="Returns or sets the position of the ColorStop."/>
			<property name="theme color" code="DThC" type="XlThemeColor" description="Returns or sets the theme color in the applied color scheme that is associated with the specified object."/>
			<property name="tint and shade" code="2535" type="real" description="Returns or sets a Single that lightens or darkens a color."/>
		</class>
		<class name="colorstops" code="X304" description="A collection of all the ColorStop objects for the specified series."/>
		<class name="column field" code="XPFn" inherits="pivot field" plural="column fields"/>
		<class name="column item" code="XPIo" inherits="pivot item" plural="column items"/>
		<class name="condition value" code="X324">
			<property name="condition value type" code="2564" type="XlConditionValueTypes" access="r"/>
			<property name="condition value value" code="2565" type="any" access="r"/>
		</class>
		<class name="cube field" code="X900" description="Represents a hierarchy or measure field from an OLAP cube" plural="cube fields">
			<element type="pivot field"/>
			<property name="all items visible" code="CL00" type="boolean" access="r" description="The AllItemsVisible property checks whether manual filtering is applied to a PivotField or CubeField."/>
			<property name="caption" code="1108" type="text" description="The label text for the cube field."/>
			<property name="cube field sub type" code="CK99" type="XlCubeFieldSubType" access="r" description="Specifies the type of a CubeField."/>
			<property name="cube field type" code="CK80" type="XlCubeFieldType" access="r" description="Indicates whether the OLAP cube field is a hierarchy field or a measure field."/>
			<property name="current page name" code="CL02" type="text" description="Returns or sets the page name for a CubeField."/>
			<property name="drag to column" code="1962" type="boolean" description="True if the specified field can be dragged to the column position."/>
			<property name="drag to data" code="1966" type="boolean" description="True if the specified field can be dragged to the data position."/>
			<property name="drag to hide" code="1963" type="boolean" description="True if the specified field can be dragged to the column position."/>
			<property name="drag to page" code="1964" type="boolean" description="True if the field can be dragged to the page position."/>
			<property name="drag to row" code="1965" type="boolean" description="True if the field can be dragged to the row position."/>
			<property name="enable multiple page items" code="CK94" type="boolean" description="True to allow multiple items in the page field area for OLAP PivotTables to be selected."/>
			<property name="flatten hierarchies" code="CL05" type="boolean"/>
			<property name="has member properties" code="CK91" type="boolean" access="r" description="Returns True when there are member properties specified to be displayed for the cube field."/>
			<property name="hierarchize distinct" code="CL06" type="boolean"/>
			<property name="include new items in filter" code="CK98" type="boolean" description="The IncludeNewItemsInFilter property is used to track included or excluded items in OLAP PivotTables."/>
			<property name="is date" code="CL03" type="boolean" access="r" description="Returns True if the CubeField is a date."/>
			<property name="layout form" code="CK92" type="XlLayoutFormType" access="r" description="Returns or sets the way the specified PivotTable items appear -- in table format or in outline format."/>
			<property name="layout subtotal location" code="CK95" type="XlSubtototalLocationType" description="Returns or sets the position of the PivotTable field subtotals in relation to, either above or below, the specified field."/>
			<property name="name" code="CK81" type="text" access="r" description="Returns the name of the object."/>
			<property name="orientation" code="CK83" type="XlPivotFieldOrientation" description="The location of the field in the specified PivotTable report."/>
			<property name="position" code="CK84" type="integer" description="Position of the item in its field if the item is currently showing."/>
			<property name="show in field list" code="CK96" type="boolean" description="When set to True, a CubeField object will be shown in the field list."/>
			<property name="treeview control" code="CK85" type="treeview control" access="r"/>
			<property name="value" code="CK82" type="text" access="r" description="Returns the name of the specified field."/>
		</class>
		<class name="custom view" code="X225" description="Represents a custom workbook view." plural="custom views">
			<property name="custom view print settings" code="2116" type="boolean" access="r" description="True if print settings are included in the custom view."/>
			<property name="name" code="pnam" type="text" access="r" description="Returns the name of this object."/>
			<property name="row col settings" code="2117" type="boolean" access="r" description="Returns true if the custom view includes settings for hidden rows and columns, including filter information."/>
		</class>
		<class name="data field" code="XPFd" inherits="pivot field" plural="data fields"/>
		<class name="databar border" code="X313">
			<property name="databar border color" code="2589" type="format color" access="r"/>
			<property name="databar border type" code="2588" type="XlDataBarBorderType" description="Returns or sets the type of border of the databar"/>
		</class>
		<class name="databar format condition" code="X312">
			<property name="applies to" code="2568" type="range" access="r" description="Returns the range this format condition applies to. Read Only."/>
			<property name="databar axis color" code="2587" type="format color" access="r"/>
			<property name="databar axis position" code="2586" type="XlDataBarAxisPosition" description="Returns or sets the position of the databar axis"/>
			<property name="databar bar color" code="2582" type="format color" access="r"/>
			<property name="databar border" code="X313" type="databar border" access="r" description="Returns the DataBarBorder for the Databar object."/>
			<property name="databar direction" code="2584" type="integer" description="Specifies the direction of the databar. Read/Write."/>
			<property name="databar fill type" code="2585" type="XlDataBarFillType" description="Returns or sets the type of fill of the databar"/>
			<property name="format condition priority" code="2566" type="integer" description="Specifies the priority for the format condition. Read/Write."/>
			<property name="format condition show value" code="2583" type="boolean" description="Specifies whether to show the cell value along with the databar. Read/Write."/>
			<property name="format condition type" code="2119" type="XlFormatConditionType" access="r" description="Return the conditional format type."/>
			<property name="formula" code="1562" type="text" description="Returns or sets the value or expression associated with the conditional format or data validation."/>
			<property name="max point condition value" code="2579" type="condition value" access="r" description="Returns the ConditionValue for the maximum point of the DataBar object."/>
			<property name="max point percent" code="2581" type="integer" description="Specifies the percentage of the data bar to draw at the maximum point. Read/Write."/>
			<property name="min point condition value" code="2578" type="condition value" access="r" description="Returns the ConditionValue for the minimum point of the DataBar object."/>
			<property name="min point percent" code="2580" type="integer" description="Specifies the percentage of the data bar to draw at the minimum point. Read/Write."/>
			<property name="negative bar format" code="X314" type="negative bar format" access="r" description="Returns the NegativeBarFormat for the Databar object."/>
			<property name="pivot condition scope type" code="2574" type="XlPivotConditionScope" description="Returns or sets the part of the pivot table that the pivot table format condition is scoped to"/>
			<property name="pivot table condition" code="2573" type="boolean" access="r" description="Tells whether this format condition is a pivot table condition."/>
			<property name="stop if true" code="2567" type="boolean" access="r" description="Tells whether the processing of format conditions stops if this condition is true. Read Only."/>
		</class>
		<class name="default web options" code="X300" description="Contains global application-level attributes used by Microsoft Excel when you save a document as a Web page or open a Web page.">
			<property name="allow png" code="2400" type="boolean" description="Returns or sets if PNG, Portable Network Graphics, is allowed as an image format when you save documents as a Web page."/>
			<property name="always save in default encoding" code="2405" type="boolean" description="Returns or sets if the default encoding is used when you save a Web page or plain text document, independent of the file's original encoding when opened."/>
			<property name="encoding" code="2404" type="MsoEncoding" description="Returns or sets the document encoding, code page or character set, to be used by the Web browser when you view the saved document."/>
			<property name="location of components" code="2403" type="text" description="Returns or sets the central URL, on the intranet or Web, or path, local or network, to the location from which authorized users can download Microsoft Office Web components when viewing your saved document."/>
			<property name="pixels per inch" code="2402" type="integer" description="Returns or sets the density, pixels per inch, of graphics images and table cells on a Web page. The range of settings is usually from 19 to 480, and common settings for popular screen sizes are 72, 96, and 120."/>
			<property name="screen size" code="2401" type="MsoScreenSize" description="Returns or sets the ideal minimum screen size, width by height, in pixels, that you should use when viewing the saved document in a Web browser."/>
			<property name="update links on save" code="2395" type="boolean" description="Returns or sets if hyperlinks and paths to all supporting files are automatically updated before you save the document as a Web page, ensuring that the links are up-to-date at the time the document is saved. If false, the links are not updated."/>
		</class>
		<class name="dialog" code="X165" description="Represents a built-in Microsoft Excel dialog box." plural="dialogs"/>
		<class name="display format" code="X306" description="Represents the formatting shown to the user.">
			<property name="add indent" code="1514" type="boolean" access="r" description="Returns or sets if text is automatically indented when the text alignment in a cell is set to equal distribution either horizontally or vertically."/>
			<property name="font object" code="XftO" type="font" access="r" description="Returns a font object that represents the font of the specified object."/>
			<property name="formula hidden" code="1565" type="boolean" access="r" description="Returns or sets if the formula will be hidden when the workbook or worksheet is protected."/>
			<property name="horizontal alignment" code="1575" type="XlHAlign" access="r" description="Returns or sets the horizontal alignment for the range."/>
			<property name="indent level" code="1576" type="integer" access="r" description="Returns or sets the indent level for the range or style. Can be an integer from 0 to 15."/>
			<property name="interior object" code="XitO" type="interior" access="r" description="Returns an interior object that represents the interior of the specified object."/>
			<property name="locked" code="1584" type="boolean" access="r" description="Returns or sets  if the range is locked."/>
			<property name="merge cells" code="1588" type="boolean" access="r" description="Returns or sets if the range contains merged cells. "/>
			<property name="number format" code="1593" type="text" access="r" description="Returns or sets the format code for the object."/>
			<property name="reading order" code="1639" type="XLDefaultSheetDir" access="r" description="Returns or sets the reading order for the specified object."/>
			<property name="shrink to fit" code="1618" type="boolean" access="r" description="Returns or sets if text automatically shrinks to fit in the available column width."/>
			<property name="style object" code="1029" type="style" access="r" description="Returns or sets a style object that represents the style of the specified range."/>
			<property name="text orientation" code="XtOr" type="XlOrientation" access="r" description="The text orientation. Can be a number value from -90 to 90 degrees."/>
			<property name="vertical alignment" code="1631" type="XlVerticalAlignmentTarget" access="r" description="Returns or sets the vertical alignment of the range."/>
			<property name="wrap text" code="1633" type="boolean" access="r" description="Returns or sets if Microsoft Excel wraps the text in the object."/>
		</class>
		<class name="document" code="docu" inherits="workbook" plural="documents"/>
		<class name="dropdown" code="XdpD" plural="dropdowns">
			<element type="character"/>
			<property name="bottom right cell" code="1983" type="range" access="r" description="Returns the bottom right cell of the range the control is occupying. "/>
			<property name="caption" code="1108" type="text" description="Returns or sets the caption for the control."/>
			<property name="control text" code="XcTx" type="text" description="Returns or sets the default text for the control."/>
			<property name="display threeD shading" code="2002" type="boolean" description="Returns or sets whether a 3-d effect will be employed when displaying the control"/>
			<property name="drop down lines" code="2021" type="integer" description="Returns or sets the number of dropdown items."/>
			<property name="enabled" code="enbl" type="boolean" description="Returns or sets if the control is enabled"/>
			<property name="entry_index" code="MSix" type="integer" access="r" description="Returns the index number of the object within the elements of the parent object."/>
			<property name="height" code="hght" type="real" description="Returns or sets the height of the control."/>
			<property name="left position" code="plft" type="real" description="Returns or sets the left position of the control"/>
			<property name="linked cell" code="2003" type="text" description="Returns or sets reference to a call which contains the value of the control."/>
			<property name="list fill range" code="2015" type="text" description="Returns or sets the items which are contained in the drop down."/>
			<property name="list index" code="CBlI" type="integer" description="Returns or sets the selected item."/>
			<property name="locked" code="1584" type="boolean" description="Returns or sets whether the control is locked for editing."/>
			<property name="name" code="pnam" type="text" description="Returns or sets the name of this control."/>
			<property name="number of items in list" code="XnIL" type="integer" access="r" description="Returns the number of total items in the list."/>
			<property name="on action" code="BCOa" type="text" description="Returns or sets the name of a string of AppleScript commands that will be executed when the object is clicked on. Please note that if AppleScript commands are set they will not be saved with the document."/>
			<property name="placement" code="1986" type="XlPlacement" description="Returns or sets how the object is placed on the worksheet."/>
			<property name="print object" code="1987" type="boolean" description="Returns or sets if this object is printed."/>
			<property name="top" code="ptop" type="real" description="Returns or sets the position of the top of the control."/>
			<property name="top left cell" code="1989" type="range" access="r" description="Returns the top left cell of the range within which the control is positioned."/>
			<property name="value" code="DPVu" type="integer" description="Returns or sets the current value of the control"/>
			<property name="visible" code="pvis" type="boolean" description="Returns or sets if the control is visible."/>
			<property name="width" code="pwid" type="real" description="Returns or sets  the width of the object."/>
			<property name="z order position" code="2364" type="integer" access="r" description="Returns the most recently set z order position, bring shape to front/send shape to back/bring shape forward/send shape backward/bring shape in front of text/send shape behind text."/>
		</class>
		<class name="filter" code="X242" description="Represents a filter for a single column. " plural="filters">
			<property name="criteria1" code="2191" type="any" access="r" description="Returns the first filtered value for the specified column in a filtered range."/>
			<property name="criteria2" code="2192" type="any" access="r" description="Returns the second filtered value for the specified column in a filtered range."/>
			<property name="filter on" code="2190" type="boolean" access="r" description="Returns true if the specified filter is on."/>
			<property name="operator" code="2120" type="XlAutoFilterOperator" description="set or return the operator that associates the two criteria applied by the specified filter."/>
		</class>
		<class name="format color" code="X307" description="Represents a color that a format condition can be colored with.">
			<property name="color" code="colr" description="Returns or sets the primary color of the object.">
				<type type="integer" list="yes"/>
			</property>
			<property name="color index" code="1098" type="XlColorIndex"/>
			<property name="theme color" code="DThC" type="XlThemeColor" description="Returns or sets the theme color in the applied color scheme that is associated with the specified object."/>
			<property name="tint and shade" code="2535" type="real" description="Returns or sets a Single that lightens or darkens a color."/>
		</class>
		<class name="format condition icon object" code="X318">
			<property name="format condition icon index" code="2598" type="integer" access="r" description="The index of the icon. Read only."/>
		</class>
		<class name="format condition icon set" code="X319">
			<property name="icon set id" code="2599" type="XlIconSet" access="r"/>
		</class>
		<class name="format condition icon sets" code="X320"/>
		<class name="format condition" code="X227" description="Represents a conditional format." plural="format conditions">
			<property name="applies to" code="2568" type="range" access="r" description="Returns the range this format condition applies to. Read Only."/>
			<property name="condition operator" code="XfcO" type="XlFormatConditionOperator" access="r" description="Returns the operator for the conditional format."/>
			<property name="font object" code="XftO" type="font" access="r" description="Returns a font object that represents the font of the specified object."/>
			<property name="format condition date operator" code="2608" type="XlTimePeriods"/>
			<property name="format condition priority" code="2566" type="integer" description="Specifies the priority for the format condition. Read/Write."/>
			<property name="format condition text" code="XfcT" type="text" description="Returns or sets the text for the specified object."/>
			<property name="format condition text operator" code="2607" type="XlContainsOperator"/>
			<property name="format condition type" code="2119" type="XlFormatConditionType" access="r" description="Return the conditional format type."/>
			<property name="formula 1" code="2121" type="text" access="r" description="Returns the value or expression associated with the conditional format or data validation."/>
			<property name="formula 2" code="2122" type="text" access="r" description="Returns the value or expression associated with the second part of a conditional format or data validation. Used only when the data validation conditional format Operator property is operator between or operator not between."/>
			<property name="interior object" code="XitO" type="interior" access="r" description="Returns an interior object that represents the interior of the specified object."/>
			<property name="number format" code="1593" type="text" description="Returns or sets the format code for the object."/>
			<property name="pivot condition scope type" code="2574" type="XlPivotConditionScope" description="Returns or sets the part of the pivot table that the pivot table format condition is scoped to"/>
			<property name="pivot table condition" code="2573" type="boolean" access="r" description="Tells whether this format condition is a pivot table condition."/>
			<property name="stop if true" code="2567" type="boolean" description="Tells whether the processing of format conditions stops if this condition is true. Read/Write."/>
		</class>
		<class name="graphic" code="X308" description="Contains properties that apply to header and footer picture objects." plural="graphics">
			<property name="brightness" code="1037" type="real" description="Returns or sets the brightness of the specified picture. The value for this property must be a number from 0.0, dimmest, to 1.0, brightest."/>
			<property name="color type" code="1038" type="MsoPictureColorType" description="Returns or sets the type of color transformation applied to the specified picture."/>
			<property name="contrast" code="1039" type="real" description="Returns or sets the contrast for the specified picture. The value for this property must be a number from 0.0, the least contrast, to 1.0, the greatest contrast."/>
			<property name="crop bottom" code="1040" type="real" description="Returns or sets the number of points that are cropped off the bottom of the specified picture."/>
			<property name="crop left" code="1041" type="real" description="Returns or sets the number of points that are cropped off the left side of the specified picture."/>
			<property name="crop right" code="1042" type="real" description="Returns or sets the number of points that are cropped off the right side of the specified picture."/>
			<property name="crop top" code="1043" type="real" description="Returns or sets the number of points that are cropped off the top of the specified picture."/>
			<property name="file name" code="AFLN" type="text" description="Returns or sets the URL, on the intranet or the Web, or path, local or network, to the location where the specified source object was saved."/>
			<property name="height" code="hght" type="real" description="Returns or sets the height of the object."/>
			<property name="lock aspect ratio" code="2207" type="boolean" description="Returns or sets if the specified shape retains its original proportions when you resize it. False if you can change the height and width of the shape independently of one another when you resize it."/>
			<property name="width" code="pwid" type="real" description="Returns or sets the width of the object."/>
		</class>
		<class name="groupbox" code="XGBc" plural="groupboxes">
			<element type="character"/>
			<property name="accelerator" code="1996" type="text" description="Returns or sets the accelerator character for this control."/>
			<property name="bottom right cell" code="1983" type="range" access="r" description="Returns the bottom right cell of the range the control is occupying."/>
			<property name="caption" code="1108" type="text" description="Returns or sets the caption for this object."/>
			<property name="control text" code="XcTx" type="text" description="Returns or sets the default text for the control. "/>
			<property name="display threeD shading" code="2002" type="boolean"/>
			<property name="enabled" code="enbl" type="boolean" description="Returns or sets if the object is enabled."/>
			<property name="entry_index" code="MSix" type="integer" access="r" description="Returns the index number of the object within the elements of the parent object."/>
			<property name="height" code="hght" type="real" description="Returns or set the height of the object."/>
			<property name="left position" code="plft" type="real" description="Returns or sets the position of the specified object, in points."/>
			<property name="locked" code="1584" type="boolean" description="Returns or sets if the object is locked, if false the object can be modified when the sheet is protected."/>
			<property name="locked text" code="1994" type="boolean" description="Returns or sets whether the control's text is locked for editing."/>
			<property name="name" code="pnam" type="text" description="Returns or sets the name of the object."/>
			<property name="on action" code="BCOa" type="text" description="Returns or sets the name of a string of AppleScript commands that will be executed when the object is clicked on. Please note that if AppleScript commands are set they will not be saved with the document."/>
			<property name="phonetic accelerator" code="2001" type="text" description="Returns or sets the link to a range."/>
			<property name="placement" code="1986" type="XlPlacement" description="Returns or sets how the object is placed on the worksheet."/>
			<property name="print object" code="1987" type="boolean" description="Returns or sets if this object is printed."/>
			<property name="top" code="ptop" type="real" description="Returns or sets the position of the top of the control."/>
			<property name="top left cell" code="1989" type="range" access="r" description="Returns the top left cell of the range within which the control is positioned."/>
			<property name="visible" code="pvis" type="boolean" description="Returns or sets if the control is visible"/>
			<property name="width" code="pwid" type="real" description="Returns or sets  the width of the object."/>
			<property name="z order position" code="2364" type="integer" access="r" description="Returns the most recently set z order position, bring shape to front/send shape to back/bring shape forward/send shape backward/bring shape in front of text/send shape behind text."/>
		</class>
		<class name="hidden field" code="XPFh" inherits="pivot field" plural="hidden fields"/>
		<class name="hidden item" code="XPIh" inherits="pivot item" plural="hidden items"/>
		<class name="horizontal page break" code="X122" description="Represents a horizontal page break." plural="horizontal page breaks">
			<property name="extent" code="1725" type="XlPageBreakExtent" access="r" description="Returns the type of the specified page break: full-screen or only within a print area."/>
			<property name="horizontal page break type" code="1726" type="XlPageBreak" description="Returns or sets the type of horizontal page break."/>
			<property name="location" code="1694" type="range" description="Returns or sets where this horizontal page break is located."/>
		</class>
		<class name="hyperlink" code="X239" description="Represents a hyperlink." plural="hyperlinks">
			<property name="address" code="2182" type="text" description="Returns or sets the address of the target document."/>
			<property name="email subject" code="2185" type="text" description="Returns or sets the text string of the specified hyperlink's e-mail subject line. The subject line is appended to the hyperlink's address."/>
			<property name="hyperlink type" code="2183" type="MsoHyperlinkType" access="r" description="Returns the hyperlink type, what the hyperlink is associated with."/>
			<property name="name" code="pnam" type="text" access="r" description="Returns the name of the object."/>
			<property name="range object" code="2180" type="range" access="r" description="Returns a range object that represents the range the specified hyperlink is attached to."/>
			<property name="screen tip" code="2186" type="text" description="Returns or sets the screen tip text for the specified hyperlink."/>
			<property name="shape object" code="2124" type="shape" access="r" description="Returns a shape object that represents the shape attached to the specified hyperlink."/>
			<property name="sub address" code="2181" type="text" description="Returns or sets the location within the document associated with the hyperlink."/>
			<property name="text to display" code="2187" type="text" description="Returns or sets the text to be displayed for the specified hyperlink. The default value is the address of the hyperlink."/>
		</class>
		<class name="icon criteria" code="X316"/>
		<class name="icon criterion" code="X317">
			<property name="condition operator" code="XfcO" type="XlFormatConditionOperator" description="Returns the operator for the conditional format."/>
			<property name="icon criterion icon" code="2597" type="XlIcon"/>
			<property name="icon criterion index" code="2594" type="integer" access="r" description="The index of the icon criterion. Read only."/>
			<property name="icon criterion type" code="2595" type="XlConditionValueTypes" description="Returns or sets the condition value type of the icon criterion. Read/Write."/>
			<property name="icon criterion value" code="2596" type="any"/>
		</class>
		<class name="icon set format condition" code="X315">
			<property name="applies to" code="2568" type="range" access="r" description="Returns the range this format condition applies to. Read Only."/>
			<property name="format condition icon set" code="X319" type="format condition icon set"/>
			<property name="format condition priority" code="2566" type="integer" description="Specifies the priority for the format condition. Read/Write."/>
			<property name="format condition type" code="2119" type="XlFormatConditionType" access="r" description="Return the conditional format type."/>
			<property name="formula" code="1562" type="text" description="Returns or sets the value or expression associated with the conditional format or data validation."/>
			<property name="icon criteria" code="X316" type="icon criteria" access="r" description="Returns the IconCriteria for the IconSetCondition object."/>
			<property name="percentile values" code="2592" type="boolean"/>
			<property name="pivot condition scope type" code="2574" type="XlPivotConditionScope" description="Returns or sets the part of the pivot table that the pivot table format condition is scoped to"/>
			<property name="pivot table condition" code="2573" type="boolean" access="r" description="Tells whether this format condition is a pivot table condition."/>
			<property name="reverse icon set order" code="2591" type="boolean"/>
			<property name="show icon only" code="2593" type="boolean"/>
			<property name="stop if true" code="2567" type="boolean" access="r" description="Tells whether the processing of format conditions stops if this condition is true. Read Only."/>
		</class>
		<class name="international macro sheet" code="XiSH" inherits="sheet" plural="international macro sheets">
			<property name="enable selection" code="1740" type="XlEnableSelection" description="Returns or sets what can be selected on the sheet."/>
		</class>
		<class name="label" code="Xlbl" plural="labels">
			<element type="character"/>
			<property name="accelerator" code="1996" type="text" description="Returns or sets the accelerator character for this control."/>
			<property name="bottom right cell" code="1983" type="range" access="r" description="Returns the bottom right cell of the range the control is occupying."/>
			<property name="caption" code="1108" type="text" description="Returns or sets the caption for the control."/>
			<property name="control text" code="XcTx" type="text" description="Returns or sets the default text for the control. "/>
			<property name="enabled" code="enbl" type="boolean" description="Returns or sets if the control is enabled"/>
			<property name="entry_index" code="MSix" type="integer" access="r" description="Returns the index number of the object within the elements of the parent object."/>
			<property name="height" code="hght" type="real" description="Returns or sets the height of the control."/>
			<property name="left position" code="plft" type="real" description="Returns or sets the left position of the control"/>
			<property name="locked" code="1584" type="boolean" description="Returns or sets whether the control is locked for editing."/>
			<property name="locked text" code="1994" type="boolean" description="Returns or sets whether the control's text is locked for editing."/>
			<property name="name" code="pnam" type="text" description="Returns or sets the name of this control"/>
			<property name="on action" code="BCOa" type="text" description="Returns or sets the name of a string of AppleScript commands that will be executed when the object is clicked on. Please note that if AppleScript commands are set they will not be saved with the document."/>
			<property name="phonetic accelerator" code="2001" type="text" description="Returns or sets the link to a range."/>
			<property name="placement" code="1986" type="XlPlacement" description="Returns or sets how the object is placed on the worksheet."/>
			<property name="print object" code="1987" type="boolean" description="Returns or sets if this object is printed."/>
			<property name="top" code="ptop" type="real" description="Returns or sets the position of the top of the control."/>
			<property name="top left cell" code="1989" type="range" access="r" description="Returns the top left cell of the range within which the control is positioned."/>
			<property name="visible" code="pvis" type="boolean" description="Returns or sets if the control is visible"/>
			<property name="width" code="pwid" type="real" description="Returns or sets  the width of the object."/>
			<property name="z order position" code="2364" type="integer" access="r" description="Returns the most recently set z order position, bring shape to front/send shape to back/bring shape forward/send shape backward/bring shape in front of text/send shape behind text."/>
		</class>
		<class name="linear gradient" code="X302" description="The LinearGradient object transitions through a series of colors in a linear manner along a specific angle.">
			<property name="colorstops" code="2541" type="colorstops" access="r" description="Returns the ColorStops for the LinearGradient object."/>
			<property name="linear gradient degree" code="2540" type="real" description="The angle of the linear gradient fill within a selection."/>
		</class>
		<class name="list column" code="X248" description="Represents a column in a list object." plural="list columns">
			<property name="cell table" code="2193" type="cell" access="r" description="Returns the cell table from a specified list column. "/>
			<property name="index" code="2508" type="integer" access="r"/>
			<property name="name" code="pnam" type="text" description="Returns or sets the name of the object."/>
			<property name="range object" code="2180" type="range" access="r" description="Returns a range object that represents the range to which the specified list column."/>
			<property name="total row" code="2194" type="range" access="r" description="Returns the totals row, if any, from a specified list column."/>
			<property name="totals calculation" code="2499" type="XlTotalsCalculation"/>
		</class>
		<class name="list object" code="X244" description="Represents a list object on a worksheet." plural="list objects">
			<element type="list column"/>
			<element type="list row"/>
			<property name="active" code="2504" type="boolean" access="r"/>
			<property name="autofilter object" code="AfOj" type="autofilter" access="r" description="Returns the autofilter object associated with this list object."/>
			<property name="cell table" code="2193" type="cell" access="r" description="Returns the cell table from a specified list object. "/>
			<property name="comment" code="2501" type="text" description="Returns or sets the comment of the object."/>
			<property name="default" code="2503" type="text" access="r"/>
			<property name="display name" code="2500" type="text" description="Returns or sets the display name of the object."/>
			<property name="display right to left" code="2505" type="boolean" access="r"/>
			<property name="header row" code="2506" type="range" access="r" description="Returns a range object that represents the used range on the specified worksheet. "/>
			<property name="insert row" code="2507" type="range" access="r"/>
			<property name="name" code="pnam" type="text" description="Returns or sets the name of the object."/>
			<property name="query table" code="X231" type="query table" access="r" description="Returns a query table object that represents the query table that intersects the specified range."/>
			<property name="range object" code="2180" type="range" access="r" description="Returns or sets a range object that represents the range to which the specified list column, object, or row applies."/>
			<property name="show autofilter" code="2198" type="boolean" description="Returns or sets if the autofilter is implemented in a list object."/>
			<property name="show headers" code="2502" type="boolean" description="Returns or sets if headers is implemented in a list object."/>
			<property name="show table style column stripes" code="CJ39" type="boolean" description="The ShowTableStyleColumnStripes property displays banded columns in which even columns are formatted differently from odd columns."/>
			<property name="show table style first column" code="SJ30" type="boolean" description="Returns or sets if the first column is displayed for the specified ListObject object."/>
			<property name="show table style last column" code="CJ37" type="boolean" description="Returns or sets if the last column is displayed for the specified ListObject object."/>
			<property name="show table style row stripes" code="CJ38" type="boolean" description="The ShowTableStyleRowStripes property displays banded rows in which even rows are formatted differently from odd rows."/>
			<property name="sort object" code="2533" type="sort" access="r" description="Returns the sort object associated with this list object."/>
			<property name="source type" code="2509" type="XlListObjectSourceType" access="r"/>
			<property name="table style" code="1936" type="null" description="Returns or sets the style used in the table body."/>
			<property name="total" code="2196" type="boolean" description="Returns or sets if a totals row be implemented in a list object."/>
			<property name="total row" code="2194" type="range" access="r" description="Returns the totals row, if any, from a specified list object."/>
		</class>
		<class name="list row" code="X246" description="Represents a row in a list object." plural="list rows">
			<property name="index" code="2508" type="integer" access="r"/>
			<property name="range object" code="2180" type="range" access="r" description="Returns a range object that represents the range to which the specified list row applies."/>
		</class>
		<class name="listbox" code="XLbx" plural="listboxes">
			<property name="bottom right cell" code="1983" type="range" access="r" description="Returns the bottom right cell of the range the control is occupying."/>
			<property name="display threeD shading" code="2002" type="boolean" description="Returns or sets whether a 3-d effect will be employed when displaying the control"/>
			<property name="enabled" code="enbl" type="boolean" description="Returns or sets if the control is enabled"/>
			<property name="entry_index" code="MSix" type="integer" access="r" description="Returns the index number of the object within the elements of the parent object."/>
			<property name="height" code="hght" type="real" description="Returns or sets the height of the control."/>
			<property name="left position" code="plft" type="real" description="Returns or sets the left position of the control"/>
			<property name="linked cell" code="2003" type="text" description="Returns or sets reference to a call which contains the value of the control."/>
			<property name="list fill range" code="2015" type="text" description="Returns or sets the items which are contained in the control."/>
			<property name="list index" code="CBlI" type="integer" description="Returns or sets the selected item."/>
			<property name="locked" code="1584" type="boolean" description="Returns or sets whether the control is locked for editing."/>
			<property name="multi select" code="2017" type="XlMultiSelect" description="Returns or sets the multiple selection setting."/>
			<property name="name" code="pnam" type="text" description="Returns or sets the name of this control"/>
			<property name="number of items in list" code="XnIL" type="integer" access="r"/>
			<property name="on action" code="BCOa" type="text" description="Returns or sets the name of a string of AppleScript commands that will be executed when the object is clicked on. Please note that if AppleScript commands are set they will not be saved with the document."/>
			<property name="placement" code="1986" type="XlPlacement" description="Returns or sets how the object is placed on the worksheet."/>
			<property name="print object" code="1987" type="boolean" description="Returns or sets if this object is printed."/>
			<property name="top" code="ptop" type="real" description="Returns or sets the position of the top of the control."/>
			<property name="top left cell" code="1989" type="range" access="r" description="Returns the top left cell of the range within which the control is positioned. "/>
			<property name="value" code="DPVu" type="integer" description="Returns or sets the current value of the control."/>
			<property name="visible" code="pvis" type="boolean" description="Returns or sets if the control is visible"/>
			<property name="width" code="pwid" type="real" description="Returns or sets  the width of the object."/>
			<property name="z order position" code="2364" type="integer" access="r" description="Returns the most recently set z order position, bring shape to front/send shape to back/bring shape forward/send shape backward/bring shape in front of text/send shape behind text."/>
		</class>
		<class name="macro sheet" code="XmSH" inherits="sheet" plural="macro sheets">
			<property name="enable selection" code="1740" type="XlEnableSelection" description="Returns or sets what can be selected on the sheet."/>
		</class>
		<class name="named item" code="X220" description="Represents a defined name for a range of cells. Named items can be either built-in names, such as Database, Print_Area, and Auto_Open, or custom names." plural="named items">
			<property name="category" code="2092" type="text" description="Returns or sets the category for the specified name in the language of the macro."/>
			<property name="category local" code="2094" type="text" description="Returns or sets the category for the specified name, in the language of the user, if the name refers to a custom function or command."/>
			<property name="entry_index" code="MSix" type="integer" access="r" description="Returns the index number of the object within the elements of the parent object."/>
			<property name="macro type" code="2095" type="XlXLMMacroType" description="Returns or sets what the name refers to."/>
			<property name="name" code="pnam" type="text" description="Returns or sets the name of the object."/>
			<property name="name local" code="1772" type="text" description="Returns or sets the name of the object, in the language of the user."/>
			<property name="reference local" code="2101" type="text" description="Returns or sets the formula that the name refers to. The formula is in the language of the user, and it's in A1-style notation, beginning with an equal sign."/>
			<property name="reference local r1c1" code="2104" type="text" description="Returns or sets the formula that the name refers to. This formula is in the language of the user, and it's in R1C1-style notation, beginning with an equal sign."/>
			<property name="reference r1c1" code="2102" type="text" description="Returns or sets the formula that the name refers to. The formula is in the language of the macro, and it's in R1C1-style notation, beginning with an equal sign."/>
			<property name="reference range" code="2105" type="range" access="r" description="Returns the range object referred to by this object."/>
			<property name="references" code="2098" type="text" description="Returns or sets the formula that the name is defined to refer to, in the language of the macro and in A1-style notation, beginning with an equal sign."/>
			<property name="shortcut key" code="2100" type="text" description="Returns or sets the shortcut key for a name defined as a custom Microsoft Excel 4.0 macro command."/>
			<property name="value" code="DPVu" type="text" description="Returns or sets a string containing the formula that the name is defined to refer to. The string is in A1-style notation in the language of the macro, and it begins with an equal sign."/>
			<property name="visible" code="pvis" type="boolean" description="Returns or sets if the object is visible."/>
		</class>
		<class name="negative bar format" code="X314">
			<property name="databar bar color" code="2582" type="format color" access="r"/>
			<property name="databar border color" code="2589" type="format color" access="r" description="Returns the DataBarBorder for the Databar object."/>
			<property name="negative bar border color type" code="2590" type="XlDataBarNegativeColorType" description="Returns or sets the type of border of the databar"/>
			<property name="negative bar color type" code="2585" type="XlDataBarNegativeColorType" description="Returns or sets the type of fill of the databar"/>
		</class>
		<class name="option button" code="XObn" plural="option buttons">
			<element type="character"/>
			<property name="accelerator" code="1996" type="text" description="Returns or sets the accelerator character for this control."/>
			<property name="border" code="X251" type="border" access="r" description="Returns a border object that represents the border of the object. "/>
			<property name="bottom right cell" code="1983" type="range" access="r" description="Returns the bottom right cell of the range the control is occupying."/>
			<property name="caption" code="1108" type="text" description="Returns or sets the caption for this object."/>
			<property name="control text" code="XcTx" type="text" description="Returns or sets the default text for the control. "/>
			<property name="display threeD shading" code="2002" type="boolean"/>
			<property name="enabled" code="enbl" type="boolean" description="Returns or sets if the object is enabled."/>
			<property name="entry_index" code="MSix" type="integer" access="r" description="Returns the index number of the object within the elements of the parent object."/>
			<property name="group box" code="2004" type="groupbox" access="r"/>
			<property name="height" code="hght" type="real" description="Returns or set the height of the object."/>
			<property name="interior object" code="XitO" type="interior" access="r" description="Returns an interior object that represents the interior of the specified object."/>
			<property name="left position" code="plft" type="real" description="Returns or sets the position of the specified object, in points."/>
			<property name="linked cell" code="2003" type="text"/>
			<property name="locked" code="1584" type="boolean" description="Returns or sets if the object is locked, if false the object can be modified when the sheet is protected."/>
			<property name="locked text" code="1994" type="boolean" description="Returns or sets whether the control's text is locked for editing."/>
			<property name="name" code="pnam" type="text" description="Returns or sets the name of the object."/>
			<property name="on action" code="BCOa" type="text" description="Returns or sets the name of a string of AppleScript commands that will be executed when the object is clicked on. Please note that if AppleScript commands are set they will not be saved with the document."/>
			<property name="phonetic accelerator" code="2001" type="text" description="Returns or sets the link to a range."/>
			<property name="placement" code="1986" type="XlPlacement" description="Returns or sets how the object is placed on the worksheet."/>
			<property name="print object" code="1987" type="boolean" description="Returns or sets if this object is printed."/>
			<property name="top" code="ptop" type="real" description="Returns the top position of the specified object, in points."/>
			<property name="top left cell" code="1989" type="range" access="r" description="Returns a range object that represents the cell that lies under the upper-left corner of the specified object. "/>
			<property name="value" code="DPVu" type="XlCheckBoxState"/>
			<property name="visible" code="pvis" type="boolean" description="Returns or sets if the object is visible."/>
			<property name="width" code="pwid" type="real" description="Returns or sets  the width of the object."/>
			<property name="z order position" code="2364" type="integer" access="r" description="Returns the z-order position of the object."/>
		</class>
		<class name="outline" code="X212" description="Represents an outline on a worksheet." plural="outlines">
			<property name="automatic styles" code="2048" type="boolean" description="Returns or sets if the outline uses automatic styles."/>
			<property name="summary column" code="2050" type="XlSummaryColumn" description="Returns or sets the location of the summary columns in the outline, as shown in the following table."/>
			<property name="summary row" code="2051" type="XlSummaryRow" description="Returns or sets the location of the summary rows in the outline, as shown in the following table."/>
		</class>
		<class name="page field" code="XPFp" inherits="pivot field" plural="page fields"/>
		<class name="page setup" code="X218" description="Represents the page setup description. The page setup object contains all page setup attributes, left margin, bottom margin, paper size, and so on, as properties." plural="page setups">
			<property name="black and white" code="2055" type="boolean" description="Returns or sets if elements of the document will be printed in black and white."/>
			<property name="bottom margin" code="2056" type="real" description="Returns or sets the size of the bottom margin, in points."/>
			<property name="center footer" code="2057" type="text" description="Returns or sets the center part of the footer."/>
			<property name="center footer picture" code="2087" type="graphic" access="r" description="Returns or sets a graphic object that represents the picture for the center section of the footer. Used to set attributes about the picture."/>
			<property name="center header" code="2058" type="text" description="Returns or sets the center part of the header."/>
			<property name="center header picture" code="2086" type="graphic" access="r" description="Returns or sets a graphic object that represents the picture for the center section of the footer. Used to set attributes about the picture."/>
			<property name="center horizontally" code="2059" type="boolean" description="Returns or sets  if the sheet is centered horizontally on the page when it's printed."/>
			<property name="center vertically" code="2060" type="boolean" description="Returns or sets if the sheet is centered vertically on the page when it's printed."/>
			<property name="chart size" code="2061" type="XlObjectSize" description="Returns or sets the way a chart is scaled to fit on a page."/>
			<property name="draft" code="2062" type="boolean" description="Returns or sets if the sheet will be printed without graphics."/>
			<property name="first page number" code="2063" type="integer" description="Returns or sets the first page number that will be used when this sheet is printed."/>
			<property name="fit to pages tall" code="2064" type="integer" description="Returns or sets the number of pages tall the worksheet will be scaled to when it's printed. Applies only to worksheets."/>
			<property name="fit to pages wide" code="2065" type="integer" description="Returns or sets the number of pages wide the worksheet will be scaled to when it's printed. Applies only to worksheets."/>
			<property name="footer margin" code="2066" type="real" description="Returns or sets the distance from the bottom of the page to the footer, in points."/>
			<property name="header margin" code="2067" type="real" description="Returns or sets the distance from the top of the page to the header, in points."/>
			<property name="left footer" code="2068" type="text" description="Returns or sets the left part of the footer."/>
			<property name="left footer picture" code="2089" type="graphic" access="r" description="Returns or sets a graphic object that represents the picture for the left section of the footer. Used to set attributes about the picture."/>
			<property name="left header" code="2069" type="text" description="Returns or sets the left part of the header."/>
			<property name="left header picture" code="2088" type="graphic" access="r" description="Returns or sets a graphic object that represents the picture for the left section of the header. Used to set attributes about the picture."/>
			<property name="left margin" code="2070" type="real" description="Returns or sets the size of the left margin, in points."/>
			<property name="order" code="2071" type="XlOrder" description="Returns or sets the order that Microsoft Excel uses to number pages when printing a large worksheet."/>
			<property name="page orientation" code="XPgO" type="XlPageOrientation" description="Returns or set if the printing mode will be portrait or landscape."/>
			<property name="print Excel comments" code="2085" type="XlPrintLocation" description="Returns or sets the way comments are printed with the sheet."/>
			<property name="print area" code="2073" type="text" description="Returns or sets the range to be printed, as a string using A1-style references in the language of the macro."/>
			<property name="print gridlines" code="2074" type="boolean" description="Returns or sets if cell gridlines are printed on the page. Applies only to worksheets."/>
			<property name="print headings" code="2075" type="boolean" description="Returns or sets if row and column headings are printed with this page. Applies only to worksheets."/>
			<property name="print notes" code="2076" type="boolean" description="Returns or sets if cell notes are printed as end notes with the sheet. Applies only to worksheets."/>
			<property name="print quality" code="XVpQ" description="Set/Gets a two element list where 1 is the horizontal print quality and 2 is the vertical print quality">
				<type type="any" list="yes"/>
			</property>
			<property name="print title columns" code="2079" type="text" description="Returns or sets the columns that contain the cells to be repeated on the left side of each page, as a string in A1-style notation in the language of the macro."/>
			<property name="print title rows" code="2080" type="text" description="Returns or sets the rows that contain the cells to be repeated at the top of each page, as a string in A1-style notation in the language of the macro."/>
			<property name="right footer" code="2081" type="text" description="Returns or sets the right part of the footer."/>
			<property name="right footer picture" code="2091" type="graphic" access="r" description="Returns or sets a graphic object that represents the picture for the right section of the footer. Used to set attributes about the picture."/>
			<property name="right header" code="2082" type="text" description="Returns or sets the right part of the header."/>
			<property name="right header picture" code="2090" type="graphic" access="r" description="Returns or sets a graphic object that represents the picture for the right section of the header. Used to set attributes about the picture."/>
			<property name="right margin" code="2083" type="real" description="Returns or sets the size of the right margin, in points."/>
			<property name="top margin" code="2084" type="real" description="Returns or sets the size of the top margin, in points."/>
			<property name="zoom" code="1148" type="XLSourceData" description="Returns or sets a percentage, between 10 and 400 percent, by which Microsoft Excel will scale the worksheet for printing. Applies only to worksheets."/>
		</class>
		<class name="pane" code="X189" description="Represents a pane of a window. Pane objects exist only for worksheets and Microsoft Excel 4.0 macro sheets." plural="panes">
			<property name="entry_index" code="MSix" type="integer" access="r" description="Returns the index number of the object within the elements of the parent object."/>
			<property name="scroll column" code="1131" type="integer" description="Returns or sets the number of the leftmost column in the pane"/>
			<property name="scroll row" code="1132" type="integer" description="Returns or sets the number of the row that appears at the top of the pane."/>
			<property name="visible range" code="1145" type="range" access="r" description="Returns a Range object that represents the range of cells that are visible in the pane. If a column or row is partially visible, it's included in the range."/>
		</class>
		<class name="parent item" code="XPIp" inherits="pivot item" plural="parent items"/>
		<class name="phonetic" code="X288" description="Contains information about a specific phonetic text string in a cell." plural="phonetics">
			<property name="character type" code="2336" type="XlPhoneticCharacterType" description="Returns or sets the type of phonetic text in the specified cell."/>
			<property name="font object" code="XftO" type="font" access="r" description="Returns a font object that represents the font of the specified object."/>
			<property name="phonetic alignment" code="XpoA" type="XlPhoneticAlignment" description="Returns or sets the alignment for the specified phonetic text."/>
			<property name="phonetic text" code="phTx" type="text" description="Returns or sets the text for the specified object."/>
			<property name="visible" code="pvis" type="boolean" description="Returns or sets if the object is visible"/>
		</class>
		<class name="pivot axis" code="X902" description="Used as the base class for the PivotDataAxis, PivotFilterAxis, and PivotGroupAxis objects. There are no properties or methods which with you can use the PivotAxis object directly.">
			<element type="pivot line"/>
		</class>
		<class name="pivot cache" code="X151" description="Represents the memory cache for a PivotTable report." plural="pivot caches">
			<property name="ADO connection" code="CJ78" type="null" access="r" description="Returns an ADO connection object if the PivotTable cache is connected to an OLE DB data source."/>
			<property name="OLAP" code="CJ81" type="boolean" access="r" description="Returns True if the PivotTable cache is connected to an Online Analytical Processing server."/>
			<property name="SQL query" code="1886" type="text" description="Returns or sets the SQL query string used with the specified ODBC data source."/>
			<property name="background query" code="1878" type="boolean" description="Returns or sets if queries for the pivot table report or query table are performed asynchronously, in the background."/>
			<property name="command text" code="1889" type="text" description="Returns or sets the command string for the specified data source."/>
			<property name="command type" code="CJ69" type="XlCmdType" description="Returns or sets a constant describing the value type of the CommandText property."/>
			<property name="connection" code="1879" type="text" description="Returns or sets a string that contains one of the following. ODBC settings that enable Microsoft Excel to connect to an ODBC data source, a URL that enables Microsoft Excel to connect to a Web data source, or a file that specifies a database or Web query."/>
			<property name="enable refresh" code="1880" type="boolean" description="Returns or sets if the pivot table cache can be refreshed by the user."/>
			<property name="entry_index" code="MSix" type="integer" access="r" description="Returns the index number of the object within the elements of the parent object."/>
			<property name="is connected" code="CJ79" type="boolean" access="r" description="Returns True if the MaintainConnection property is True and the PivotTable cache is currently connected to its source."/>
			<property name="local connection" code="CJ75" type="text" description="Returns or sets the connection string to an offline cube file."/>
			<property name="maintain connection" code="CJ71" type="boolean" description="True if the connection to the specified data source is maintained after the refresh and until the workbook is closed."/>
			<property name="memory used" code="1275" type="integer" access="r" description="Returns the amount of memory currently being used by the object, in bytes."/>
			<property name="missing items limit" code="CJ83" type="XlPivotTableMissingItems" description="Returns or sets the maximum quantity of unique items per PivotTable field that are retained even when they have no supporting data in the cache records."/>
			<property name="optimize cache" code="1881" type="boolean" description="Returns or set if the pivot table cache is optimized when it's constructed."/>
			<property name="query type" code="2155" type="XlQueryType" access="r" description="Indicates the type of query used by Microsoft Excel to populate the PivotTable cache."/>
			<property name="record count" code="1882" type="integer" access="r" description="Returns the number of records in the pivot table cache or the number of cache records that contain the specified item."/>
			<property name="refresh date" code="1883" type="date" access="r" description="Returns the date on which the pivot cache was last refreshed."/>
			<property name="refresh name" code="1884" type="text" access="r" description="Returns the name of the person who last refreshed the pivot cache. "/>
			<property name="refresh on file open" code="1885" type="boolean" description="Returns or sets if the pivot table cache or query table is automatically updated each time the workbook is opened."/>
			<property name="refresh period" code="CJ72" type="integer" description="Returns or sets the number of minutes between refreshes."/>
			<property name="robust connect" code="CJ85" type="XlRobustConnect" description="Returns or sets how the PivotTable cache connects to its data source."/>
			<property name="save password" code="1887" type="boolean" description="Returns or set if password information in an ODBC connection string is saved with the specified query. if false, the password is removed."/>
			<property name="source connection file" code="CJ84" type="text" description="Returns or sets a String indicating the Microsoft Office Data Connection file or similar file that was used to create the PivotTable."/>
			<property name="source data" code="1888" type="XLSourceDataLocation" description="Returns or sets the data source for the pivot table."/>
			<property name="source type" code="CJ82" type="XlPivotTableSourceType" access="r" description="Returns a value that identifies the type of item being published."/>
			<property name="upgrade on refresh" code="CJ89" type="boolean" description="Contains information on whether to upgrade the PivotCache and all connected PivotTables on the next refresh."/>
			<property name="use local connection" code="CJ77" type="boolean" description="True if the LocalConnection property is used to specify the string that enables Microsoft Excel to connect to a data source."/>
			<property name="version" code="CJ88" type="XlPivotTableVersionList" access="r" description="Returns the version of Microsoft Excel in which the PivotCache was created."/>
			<property name="workbook connection" code="CJ87" type="null" access="r" description="Establishes a connection between the current workbook and the PivotCache object."/>
		</class>
		<class name="pivot cell" code="X908" description="Represents a cell in a PivotTable report.">
			<property name="MDX" code="CK06" type="text" access="r"/>
			<property name="cell changed" code="CK05" type="XlCellChangedState" access="r"/>
			<property name="custom subtotal function" code="CJ99" type="XlConsolidationFunction" access="r" description="Returns the custom subtotal function field setting of a PivotCell object."/>
			<property name="data field" code="CJ93" type="pivot field" access="r" description="Returns a PivotField object that corresponds to the selected data field."/>
			<property name="data source value" code="CK04" type="null" access="r"/>
			<property name="pivot cell type" code="CJ91" type="XlPivotCellType" access="r" description="Returns a constant that identifies the PivotTable entity the cell corresponds to."/>
			<property name="pivot column line" code="CK01" type="pivot line" access="r" description="Returns the PivotLine on a column for a specific PivotCell object."/>
			<property name="pivot field" code="CJ94" type="pivot field" access="r" description="Returns a PivotField object that represents the PivotTable field containing the upper-left corner of the specified range."/>
			<property name="pivot item" code="CJ95" type="pivot item" access="r" description="Returns a PivotItem object that represents the PivotTable item containing the upper-left corner of the specified range."/>
			<property name="pivot row line" code="CK00" type="pivot line" access="r" description="Returns the PivotLine on a row for a specific PivotCell object."/>
			<property name="pivot table" code="CJ92" type="pivot table" access="r" description="Returns a PivotTable object that represents the PivotTable report associated with the PivotCell."/>
			<property name="range" code="CJ98" type="range" access="r" description="Returns a Range object that represents the range the specified PivotCell applies to."/>
			<property name="row items" code="CJ96" type="null" description="Returns a PivotItemList collection that corresponds to the items on the category axis that represent the selected cell."/>
		</class>
		<class name="pivot field" code="X157" description="Represents a field in a pivot table." plural="pivot fields">
			<element type="child item"/>
			<element type="hidden item"/>
			<element type="parent item"/>
			<element type="pivot item"/>
			<element type="calculated item"/>
			<element type="pivot filter"/>
			<property name="all items visible" code="CK40" type="boolean" access="r" description="Used to retrieve a Boolean value that indicates whether or not any manual filtering is applied to the PivotField."/>
			<property name="auto show count" code="1975" type="integer" access="r" description="Returns the number of top or bottom items that are automatically shown in the pivot field."/>
			<property name="auto show field" code="1976" type="text" access="r" description="Returns the name of the data field used to determine the top or bottom items that are automatically shown in the pivot field."/>
			<property name="auto show range" code="1974" type="XLAutoShowPosition" access="r" description="Returns position top if the top items are shown automatically in the pivot field, returns position bottom if the bottom items are shown."/>
			<property name="auto show type" code="1973" type="XLAutoShowType" access="r" description="Returns type_automatic if auto show is enabled for the pivot field, or  returns type_manual if auto show is disabled."/>
			<property name="auto sort custom subtotal" code="CK37" type="integer" access="r" description="Returns the name of the custom subtotal used to sort the specified PivotTable field automatically."/>
			<property name="auto sort field" code="1972" type="text" access="r" description="Returns the name of the data field used to sort the pivot field automatically."/>
			<property name="auto sort order" code="1971" type="XlSortOrder" access="r" description="Returns the order used to sort the pivot field automatically. "/>
			<property name="auto sort pivot line" code="CK36" type="pivot line" access="r" description="Returns the name of the PivotLine used to sort the specified PivotTable field automatically."/>
			<property name="base field" code="1957" type="text" description="Returns or sets the base field for a custom calculation."/>
			<property name="base item" code="1958" type="text" description="Returns or sets the item in the base field for a custom calculation."/>
			<property name="calculation" code="1208" type="XlPivotFieldCalculation" description="Returns or sets the type of calculation done by the specified pivot field."/>
			<property name="caption" code="1108" type="text" description="The label text for the pivot field."/>
			<property name="child field" code="1941" type="pivot field" access="r" description="Returns a pivot field object that represents the child pivot field for the specified field, if the field is grouped and has a child field."/>
			<property name="cube field" code="CK14" type="cube field" access="r" description="Returns the CubeField object from which the specified PivotTable field is descended."/>
			<property name="current page" code="1943" type="null" description="Returns or sets the current page showing for the page field, only valid for page fields."/>
			<property name="current page list" code="CK23" type="null" description="Returns or sets an array of strings corresponding to the list of items included in a multiple-item page field of a PivotTable report."/>
			<property name="current page name" code="CK15" type="text" description="Returns or sets the currently displayed page of the specified PivotTable report."/>
			<property name="data range" code="1944" type="range" access="r" description="Returns a range object.  For a data field the range is the data contained in the field, for a row, column or page field it is the items in the field."/>
			<property name="database sort" code="CK18" type="boolean" description="When set to True, manual repositioning of items in a PivotTable field is allowed."/>
			<property name="display as caption" code="CK31" type="boolean" access="r" description="This property is used to display member properties of PivotFields as captions."/>
			<property name="display as tooltip" code="CK29" type="boolean" description="This property is used to specify whether or not a specific member property PivotField is displayed in tooltips."/>
			<property name="display in report" code="CK30" type="boolean" description="This property is used to specify whether the specified member property PivotField is displayed in the PivotTable or not."/>
			<property name="drag to column" code="1962" type="boolean" description="Returns or sets if the pivot field can be dragged to the column position."/>
			<property name="drag to data" code="1966" type="boolean" description="Returns or sets if the field can be dragged to the data position."/>
			<property name="drag to hide" code="1963" type="boolean" description="Returns or sets if the field can be hidden by being dragged off the pivot table."/>
			<property name="drag to page" code="1964" type="boolean" description="Returns or sets if the field can be dragged to the page position."/>
			<property name="drag to row" code="1965" type="boolean" description="Returns or sets if the field can be dragged to the row position."/>
			<property name="drilled down" code="CK13" type="boolean" description="True if the flag for the specified PivotTable field or PivotTable item is set to drilled."/>
			<property name="enable item selection" code="CK22" type="boolean" description="When set to False, disables the ability to use the field dropdown in the user interface."/>
			<property name="enable multiple page items" code="CK39" type="boolean" description="Used for specifying whether or not check boxes are present in the filter drop-down list for fields in the page area."/>
			<property name="formula" code="1562" type="text" description="Returns or sets the object's formula, in A1-style notation and in the language of the macro."/>
			<property name="function" code="1946" type="XlConsolidationFunction" description="Returns or sets the function used to summarize the pivot field."/>
			<property name="group level" code="1947" type="integer" access="r" description="Returns the placement of the specified field within a group of fields, if the field is a member of a grouped set of fields."/>
			<property name="hidden" code="1574" type="boolean" description="This property is used to hide the individual levels of an OLAP hierarchy."/>
			<property name="hidden items list" code="CK17" type="null" description="Returns or sets an Object specifying an array of strings that are hidden items for a PivotTable field."/>
			<property name="include new items in filter" code="CK33" type="boolean" description="Allows developers to specify whether excluded or included items should be tracked when manual filtering is applied to the PivotField."/>
			<property name="is calculated" code="1967" type="boolean" access="r" description="Returns true if the pivot field or item is a calculated field or item."/>
			<property name="is member property" code="CK19" type="boolean" access="r" description="Returns True when the PivotField contains member properties."/>
			<property name="label range" code="1949" type="range" access="r" description="Returns a range object that represents the cell, or cells, that contain the field label."/>
			<property name="layout blank line" code="CK07" type="boolean" description="True if a blank row is inserted after the specified row field in a PivotTable report."/>
			<property name="layout compact row" code="CK32" type="boolean" description="Specifies whether or not a PivotField is compacted , items of multiple PivotFields are displayed in a single column, when rows are selected."/>
			<property name="layout form" code="CK10" type="XlLayoutFormType" description="Returns or sets the way the specified PivotTable items appear."/>
			<property name="layout pagebreak" code="CK09" type="boolean" description="True if a page break is inserted after each field."/>
			<property name="layout subtotal location" code="CK08" type="XlSubtototalLocationType" description="Returns or sets the position of the PivotTable field subtotals in relation to either above or below the specified field."/>
			<property name="member property caption" code="CK28" type="text" description="Setting the MemberPropertyCaption property controls which member property is used as caption for a given level."/>
			<property name="memory used" code="1275" type="integer" access="r" description="Returns the amount of memory currently being used by the object, in bytes."/>
			<property name="name" code="pnam" type="text" description="Returns or sets the name of the pivot field."/>
			<property name="number format" code="1593" type="text" description="Returns or sets the format code for the pivot field. "/>
			<property name="parent field" code="1951" type="pivot field" access="r" description="Returns a pivot field object that represents the pivot field that's the group parent of the object. The field must be grouped and have a parent field."/>
			<property name="pivot field data type" code="XpfT" type="XlPivotFieldDataType" access="r" description="Returns an enumeration describing the type of data in the pivot field."/>
			<property name="pivot field orientation" code="XpfO" type="XlPivotFieldOrientation" description="The location of the field in the pivot table."/>
			<property name="position" code="posn" type="integer" description="Position of the field, first, second, third, and so on, among all the fields in its orientation, rows, columns, pages, data."/>
			<property name="property order" code="CK21" type="integer" description="Valid only for PivotTable fields that are member property fields."/>
			<property name="property parent field" code="CK20" type="pivot field" access="r" description="Returns a PivotField object representing the field to which the properties in this field pertain."/>
			<property name="repeat labels" code="CK48" type="boolean"/>
			<property name="server based" code="1968" type="boolean" description="Returns or sets if the pivot table's data source is external and only the items matching the page field selection are retrieved."/>
			<property name="show all items" code="1950" type="boolean" description="Returns or sets if all items in the pivot table are displayed, even if they don't contain summary data."/>
			<property name="show detail" code="1615" type="boolean" description="Gets or sets whether the specified PivotField is showing detail."/>
			<property name="showing in axis" code="CK38" type="boolean" access="r" description="Indicates if the PivotField is currently visible in the PivotTable or not."/>
			<property name="source caption" code="CK46" type="text" access="r" description="The SourceCaption property is applicable only for OLAP PivotTables, and returns the original caption from the OLAP server for a PivotField."/>
			<property name="source name" code="1954" type="text" access="r" description="Return the specified object's name, as it appears in the original source data for the pivot table. This might be different from the current item name if the user renamed the item after creating the pivot table."/>
			<property name="standard formula" code="CK16" type="text" description="Returns or sets a String specifying formulas with standard English formatting."/>
			<property name="subtotal name" code="CK11" type="text" description="Returns or sets the text string label displayed in the subtotal column or row heading in the specified PivotTable report."/>
			<property name="total levels" code="1959" type="integer" access="r" description="Returns the total number of fields in the current field group. If the field isn't grouped, or if the data source is OLAP-based, TotalLevels returns the value 1."/>
			<property name="use member property as caption" code="CK27" type="boolean" description="This property is used to control whether member property captions are used for PivotItem captions of the PivotField."/>
			<property name="value" code="DPVu" type="text" description="Returns or sets the name of the specified field in the pivot table."/>
			<property name="visible items" code="PFvi" access="r" description="Returns a list of all the visible pivot items in the specified field.">
				<type type="specifier" list="yes"/>
			</property>
			<property name="visible items list" code="CK34" type="null" description="Returns or sets an array of strings corresponding to the list of items included in a multiple-item page field of a PivotTable report."/>
		</class>
		<class name="pivot filter" code="X903" description="PivotTable Advanced Filter." plural="pivot filters">
			<property name="active" code="CK64" type="boolean" access="r" description="Returns whether the specified PivotFilter is active."/>
			<property name="data cube field" code="CK67" type="cube field" access="r" description="This property is applicable only to non-OLAP PivotTables and provides the Value field ,PivotField in the Values area, being filtered by for a value filter."/>
			<property name="data field" code="CK66" type="pivot field" access="r" description="This property is applicable only to non-OLAP PivotTables and provides the Value field ,PivotField in the Values area, being filtered by for a value filter."/>
			<property name="description" code="CK62" type="text" access="r" description="Provides an optional description for the PivotFilter object."/>
			<property name="filter type" code="CK50" type="XlPivotFilterType" access="r" description="Specifies the type of filter to be applied."/>
			<property name="is member property filter" code="CK71" type="boolean" access="r" description="Specifies whether the label filter is based on the PivotItem captions of a member property of the field or on the PivotItem captions of the PivotField itself."/>
			<property name="member property field" code="CK70" type="pivot field" access="r" description="This property specifies the member property PivotField on which the label filter is based."/>
			<property name="name" code="CK61" type="text" access="r" description="This property provides the option of naming filters for reference."/>
			<property name="order" code="CK49" type="integer" description="Specifies the evaluation order of the filter among all Value filters applied to the entire PivotTable."/>
			<property name="pivot field" code="CK65" type="pivot field" access="r" description="Specifies the PivotField to which the filter is applied."/>
			<property name="value1" code="CK68" type="null" access="r" description="This property is a user-supplied parameter to define a filter for a PivotField."/>
			<property name="value2" code="DPV2" type="null" access="r" description="This property is a user-supplied parameter to define a filter for a PivotField."/>
		</class>
		<class name="pivot formula" code="X153" description="Represents a formula used to calculate results in a pivot table report." plural="pivot formulas">
			<property name="entry_index" code="MSix" type="integer" description="Returns the index number of the object within the elements of the parent object."/>
			<property name="formula" code="1562" type="text" description="Returns or sets the object's formula, in A1-style notation and in the language of the macro."/>
			<property name="standard formula" code="CK72" type="text" description="Returns or sets a String specifying formulas with standard English formatting."/>
			<property name="value" code="DPVu" type="text" description="Returns or sets the name of the specified formula in the pivot table formula."/>
		</class>
		<class name="pivot item" code="X160" description="Represents an item in a pivot field. The items are the individual data entries in a field category." plural="pivot items">
			<element type="child item"/>
			<property name="caption" code="1108" type="text" description="The label text for the pivot item."/>
			<property name="data range" code="1944" type="range" access="r" description="Returns a range object specifying the data qualified by the item."/>
			<property name="drilled down" code="CK74" type="boolean" description="True if the flag for the specified PivotTable field or PivotTable item is set to expanded, or visible."/>
			<property name="formula" code="1562" type="text" description="Returns or sets the pivot item's formula, in A1-style notation and in the language of the macro."/>
			<property name="is calculated" code="1967" type="boolean" access="r" description="Returns true if the pivot  item is a calculated item."/>
			<property name="label range" code="1949" type="range" access="r" description="Returns a range object that represents all the pivot table cells that contain the item."/>
			<property name="name" code="pnam" type="text" description="Returns or sets the name of the pivot item."/>
			<property name="parent item" code="XPIp" type="parent item" access="r" description="Returns a pivot item object that represents the parent pivot item in the parent pivot field object, the field must be grouped so that it has a parent."/>
			<property name="parent show detail" code="1978" type="boolean" access="r" description="Return true if the specified item is showing because one of its parents is showing detail. False if the specified item isn't showing because one of its parents is hiding detail. This property is available only if the item is grouped."/>
			<property name="position" code="posn" type="integer" description="Returns or sets the position of the item in its field, if the item is currently showing."/>
			<property name="record count" code="1882" type="integer" access="r" description="Returns the number of records in the pivot table cache or the number of cache records that contain the specified item."/>
			<property name="show detail" code="1615" type="boolean" description="Returns  or sets if the pivot item is showing detail."/>
			<property name="source name" code="1954" type="text" access="r" description="Return the specified object's name, as it appears in the original source data for the pivot table. This might be different from the current item name if the user renamed the item after creating the pivot table."/>
			<property name="source name standard" code="CK76" type="text" access="r" description="Returns a String that represents the PivotTable item's source name in standard English format settings."/>
			<property name="standard formula" code="CK75" type="text" description="Returns or sets a String specifying formulas with standard English formatting."/>
			<property name="value" code="DPVu" type="text" description="Returns or sets set the name of the specified item in the pivot table field."/>
			<property name="visible" code="pvis" type="boolean" description="Returns or sets if the pivot item is visible."/>
		</class>
		<class name="pivot line" code="X907" description="The PivotLines object is a collection of lines in a PivotTable, containing all lines on rows or columns of the pivot." plural="pivot lines">
			<property name="line type" code="CK77" type="XlPivotLineType" access="r" description="Returns an XlPivotLineType constant that indicates the type of PivotLine."/>
			<property name="pivot line cells" code="CK79" type="null" access="r" description="Returns a collection of PivotCell objects in a PivotLine."/>
			<property name="position" code="CK78" type="integer" access="r" description="Returns or sets the position of the PivotLine object."/>
		</class>
		<class name="pivot table" code="X155" description="Represents a pivot table on a worksheet." plural="pivot tables">
			<element type="column field"/>
			<element type="data field"/>
			<element type="hidden field"/>
			<element type="page field"/>
			<element type="pivot field"/>
			<element type="row field"/>
			<element type="calculated field"/>
			<element type="calculated member"/>
			<element type="active filter"/>
			<element type="cube field"/>
			<element type="slicer"/>
			<property name="CompactRowIndent" code="CJ28" type="integer" description="Returns or sets the indent increment for PivotItems when compact row layout form is turned on."/>
			<property name="allocation" code="CJ52" type="XlAllocation"/>
			<property name="allocation method" code="CJ54" type="XlAllocationMethod"/>
			<property name="allocation value" code="CJ53" type="XlAllocationValue"/>
			<property name="allocation weight expression" code="CJ55" type="text"/>
			<property name="allow multiple filters" code="CJ43" type="boolean" description="Sets or retrieves a value that indicates whether a PivotField can have multiple filters applied to it at the same time."/>
			<property name="alternative text" code="CJ63" type="text" description="Returns or sets the descriptive alternative text string for a ShapeRange object when the object is saved to a Web page."/>
			<property name="cache index" code="1913" type="integer" description="Returns or sets the index number of the pivot table cache."/>
			<property name="calculated members in filters" code="CJ67" type="boolean"/>
			<property name="change list" code="CJ61" type="null" access="r"/>
			<property name="column grand" code="1892" type="boolean" description="Returns or sets if the pivot table shows grand totals for columns."/>
			<property name="column range" code="1893" type="range" access="r" description="Returns a range object that represents the range that contains the pivot table column area."/>
			<property name="compact layout column header" code="CJ45" type="text" description="Specifies the caption that is displayed in the column header of a PivotTable when in compact row layout form."/>
			<property name="compact layout row header" code="CJ44" type="text" description="Specifies the caption that is displayed in the row header of a PivotTable when in compact row layout form."/>
			<property name="data body range" code="1895" type="range" access="r" description="Returns a range object that represents the range that contains the pivot table data area."/>
			<property name="data label range" code="1897" type="range" access="r" description="Returns a range object that represents the range that contains the labels for the pivot table data fields. "/>
			<property name="data pivot field" code="CJ07" type="pivot field" access="r" description="Returns a PivotField object that represents all the data fields in a PivotTable."/>
			<property name="display context tooltips" code="CJ26" type="boolean" description="Controls whether or not tooltips are displayed for PivotTable cells."/>
			<property name="display empty column" code="CJ20" type="boolean" description="Returns True when the nonempty MDX keyword is included in the query to the OLAP provider for the value axis."/>
			<property name="display empty row" code="CJ19" type="boolean" description="Returns True when the nonempty MDX keyword is included in the query to the OLAP provider for the category axis."/>
			<property name="display error string" code="1915" type="boolean" description="Returns or sets if the pivot table displays a custom error string in cells that contain errors."/>
			<property name="display field captions" code="CJ30" type="boolean" description="Controls whether or not filter buttons and PivotField captions for rows and columns are displayed in the grid."/>
			<property name="display immediate items" code="CJ13" type="boolean" description="Returns or sets a Boolean that indicates whether items in the row and column areas are visible when the data area of the PivotTable is empty."/>
			<property name="display member property tooltips" code="CJ25" type="boolean" description="Controls whether or not to display member properties in tooltips."/>
			<property name="display null string" code="1916" type="boolean" description="Returns or sets if the pivot table displays a custom string in cells that contain null values."/>
			<property name="enable data value editing" code="CJ08" type="boolean" description="True to disable the alert for when the user overwrites values in the data area of the PivotTable."/>
			<property name="enable drilldown" code="1917" type="boolean" description="Returns or sets if drilldown is enabled."/>
			<property name="enable field dialog" code="1918" type="boolean" description="Returns or sets if the pivot table field dialog box is available when the user double-clicks the pivot table field."/>
			<property name="enable field list" code="CJ14" type="boolean" description="False to disable the ability to display the field well for the PivotTable."/>
			<property name="enable wizard" code="1919" type="boolean" description="Returns or sets if the pivot table wizard is available."/>
			<property name="enable writeback" code="CJ51" type="boolean"/>
			<property name="error string" code="1920" type="text" description=" Returns or sets the string displayed in cells that contain errors when the display error string property is true. The default value is an empty string."/>
			<property name="file list sort ascending" code="CJ46" type="boolean" description="Controls the sort order of fields in the PivotTable Field List."/>
			<property name="grand total name" code="CJ02" type="text" description="Returns or sets the text string label that is displayed in the grand total column or row heading in the specified PivotTable report"/>
			<property name="has autoformat" code="1898" type="boolean" description="Returns or sets if the pivot table is automatically formatted when it's refreshed or when fields are moved."/>
			<property name="in grid drop zones" code="CJ34" type="boolean" description="This property is used to toggle in-grid drop zones for a PivotTable object."/>
			<property name="inner detail" code="1900" type="text" description="Returns or sets the name of the field that will be shown as detail when the show detail property is true for the innermost row or column field."/>
			<property name="layout row default" code="CJ29" type="XlLayoutRowType" description="This property specifies the layout settings for PivotFields when they are added to the PivotTable for the first time."/>
			<property name="location" code="CJ50" type="text" description="Gets or sets a String that represents the top-left cell in the body of the specified PivotTable."/>
			<property name="manual update" code="1923" type="boolean" description="Returns or sets if the pivot table is recalculated only at the user's request."/>
			<property name="mdx" code="CJ10" type="text" access="r" description="Returns a String indicating the MDX, Multidimensional-Expression, that would be sent to the provider to populate the current PivotTable view."/>
			<property name="merge labels" code="1924" type="boolean" description="Returns or sets if pivot table outer-row item, column item, subtotal, and grand total labels use merged cells."/>
			<property name="name" code="pnam" type="text" description="Returns or sets the name of the object."/>
			<property name="null string" code="1925" type="text" description="Returns or sets the string displayed in cells that contain null values when the display null string property is true. The default value is an empty string."/>
			<property name="page field order" code="1929" type="XlOrder" description="Returns or sets the order in which page fields are added to the pivot table layout."/>
			<property name="page field style" code="1930" type="text" description="Returns or sets the style used in the bound page field area."/>
			<property name="page field wrap count" code="1931" type="integer" description="Returns or sets the number of pivot table page fields in each column or row."/>
			<property name="page range" code="1902" type="range" access="r" description="Returns a range object that represents the range that contains the pivot table page area."/>
			<property name="page range cells" code="1903" type="range" access="r" description="Returns a range object that represents the cells in the pivot table containing only the page fields and item drop-down lists."/>
			<property name="pivot cache" code="X151" type="pivot cache" access="r" description="Returns a pivot cache object that represents the cache for the specified pivot table"/>
			<property name="pivot column axis" code="CJ21" type="pivot axis" access="r" description="Returns a PivotAxis object representing the entire column axis "/>
			<property name="pivot row axis" code="CJ22" type="pivot axis" access="r" description="Returns a PivotAxis object representing the entire row axis "/>
			<property name="pivot selection" code="1934" type="text" description="Returns or sets the pivot table selection, in standard pivot table selection format."/>
			<property name="pivot selection standard" code="CJ05" type="text" description="Returns or sets a String indicating the PivotTable selection in standard PivotTable report format using English settings."/>
			<property name="preserve formatting" code="1932" type="boolean" description="Returns or sets if pivot table formatting is preserved when the pivot table is refreshed or recalculated by operations such as pivoting, sorting, or changing page field items."/>
			<property name="print drill indicators" code="Cj24" type="boolean" description="Specifies whether or not drill indicators are printed with the PivotTable."/>
			<property name="print titles" code="CJ00" type="boolean" description="set/get whether the print titles for the worksheet are set based on the PivotTable report."/>
			<property name="refresh date" code="1883" type="date" access="r" description="Returns the date on which the pivot table was last refreshed."/>
			<property name="refresh name" code="1884" type="text" access="r" description="Returns the name of the person who last refreshed the pivot table data."/>
			<property name="repeat items on each printed page" code="CJ03" type="boolean" description="True if row, column, and item labels appear on the first row of each page when the specified PivotTable report is printed. False if labels are printed only on the first page."/>
			<property name="row grand" code="1907" type="boolean" description="Returns or sets if the pivot table shows grand totals for rows."/>
			<property name="row range" code="1908" type="range" access="r" description="Returns a range object that represents the range including the pivot table row area."/>
			<property name="save data" code="1909" type="boolean" description="Returns or sets if data for the pivot table is saved with the workbook. If false only the pivot table definition is saved."/>
			<property name="selection mode" code="1935" type="XlPTSelectionMode" description="Returns or sets the pivot table structured selection mode."/>
			<property name="show drill indicators" code="CJ23" type="boolean" description="When the ShowDrillIndicators property is set to False, the PrintDrillIndicators property has no effect."/>
			<property name="show page multiple label" code="CJ16" type="boolean" description="When set to True, Multiple Items will appear in the PivotTable cell on the worksheet whenever items are hidden and an aggregate of nonhidden items is shown in the PivotTable view."/>
			<property name="show table style column headers" code="CJ41" type="boolean" description="The ShowTableStyleColumnHeaders property is set to True if the coulmn headers should be displayed in the PivotTable."/>
			<property name="show table style column stripes" code="CJ39" type="boolean" description="The ShowTableStyleColumnStripes property displays banded columns in which even columns are formatted differently from odd columns."/>
			<property name="show table style last column" code="CJ37" type="boolean" description="Returns or sets if the last column is displayed for the specified ListObject object."/>
			<property name="show table style row headers" code="CJ40" type="boolean" description="The ShowTableStyleRowHeaders property is set to True if the row headers should be displayed in the PivotTable."/>
			<property name="show table style row stripes" code="CJ38" type="boolean" description="The ShowTableStyleRowStripes property displays banded rows in which even rows are formatted differently from odd rows."/>
			<property name="show values row" code="CJ66" type="boolean"/>
			<property name="small grid" code="1940" type="boolean" description="Returns or sets if Microsoft Excel uses a grid that's two cells wide and two cells deep for a newly created pivot table report. False if Excel uses a blank stencil outline."/>
			<property name="sort using custom lists" code="CJ47" type="boolean" description="The SortUsingCustomLists property controls whether custom lists are used for sorting items of fields."/>
			<property name="source data" code="1888" type="XLSourceDataLocation" description="Either a range reference as a string or a list of SQL commands"/>
			<property name="subtotal hidden page items" code="1928" type="boolean" description="Returns or sets if hidden page field items in the pivot table are included in row and column subtotals, block totals, and grand totals."/>
			<property name="summary" code="1622" type="text"/>
			<property name="table range1" code="1910" type="range" access="r" description="Returns a range object that represents the range containing the entire pivot table, but doesn't include page fields."/>
			<property name="table range2" code="1911" type="range" access="r" description="Returns a range object that represents the range containing the entire pivot table, including page fields."/>
			<property name="table style" code="1936" type="text" description="Returns or sets the style used in the pivot table body."/>
			<property name="table style2" code="CJ36" type="null" description="The TableStyle2 property specifies the PivotTable style currently applied to the PivotTable."/>
			<property name="tag" code="BCTg" type="text" description="Returns or sets a string saved with the pivot table."/>
			<property name="totals annotation" code="CJ04" type="boolean" description="True if an asterisk is displayed next to each subtotal and grand total value in the specified PivotTable report if the report is based on an OLAP data source."/>
			<property name="vacated style" code="1939" type="text" description="Returns or sets the style applied to cells vacated when the pivot table is refreshed."/>
			<property name="value" code="DPVu" type="text" description="Returns or set the name of the pivot table."/>
			<property name="version" code="CJ17" type="XlPivotTableVersionList" access="r"/>
			<property name="view calculated members" code="CJ11" type="boolean" description="When set to True, calculated members for Online Analytical Processing, OLAP, PivotTables can be viewed."/>
			<property name="visual totals" code="CJ15" type="boolean" description="True to enable Online Analytical Processing, OLAP, PivotTables to retotal after an item has been hidden from view."/>
			<property name="visual totals for sets" code="CJ65" type="boolean"/>
		</class>
		<class name="query table" code="X231" description="Represents a worksheet table built from data returned from an external data source, such as an SQL server." plural="query tables">
			<property name="adjust column width" code="2141" type="boolean" description="Returns or sets if the column widths are automatically adjusted for the best fit each time you refresh the specified query table."/>
			<property name="background query" code="1878" type="boolean" description="Returns or sets if queries for the query table are performed asynchronously."/>
			<property name="command type" code="CmTe" type="XlCmdType" description="Returns or sets one of the XlCmdType constants listed in the following table in the remarks section."/>
			<property name="connection" code="1879" type="text" description="Returns or sets a string that contains one of the following: ODBC settings that enable Microsoft Excel to connect to an ODBC data source; a URL that enables Microsoft Excel to connect to a Web data source; or a file that specifies a database or Web query."/>
			<property name="destination" code="2134" type="range" access="r" description="Returns the cell in the upper-left corner of the query table destination range, the range where the resulting query table will be placed. The destination range must be on the worksheet that contains the query table object."/>
			<property name="enable editing" code="2140" type="boolean" description="Returns or sets if the user can edit the specified query table. False if the user can only refresh the query table."/>
			<property name="enable refresh" code="1880" type="boolean" description="Returns or sets if the query table can be refreshed by the user."/>
			<property name="fetched row overflow" code="2131" type="boolean" access="r" description="Returns true if the number of rows returned by the last use of the refresh method is greater than the number of rows available on the worksheet."/>
			<property name="field names" code="2127" type="boolean" description="Returns or sets if field names from the data source appear as column headings for the returned data."/>
			<property name="fill adjacent formulas" code="2129" type="boolean" description="Returns or sets if formulas to the right of the specified query table are automatically updated whenever the query table is refreshed."/>
			<property name="has autoformat" code="1898" type="boolean" description="Returns or sets if the query table is automatically formatted when it's refreshed or when fields are moved."/>
			<property name="name" code="pnam" type="text" description="Returns or sets the name of the object."/>
			<property name="post text" code="2135" type="text" description="Returns or sets the string used with the post method of inputting data into a Web server to return data from a Web query."/>
			<property name="query type" code="2155" type="XlQueryType" access="r" description="Returns the type of query used by Microsoft Excel to populate the query table."/>
			<property name="refresh on file open" code="1885" type="boolean" description="Returns or sets if the query table is automatically updated each time the workbook is opened."/>
			<property name="refresh style" code="2133" type="XlCellInsertionMode" description="Returns or sets the way rows on the specified worksheet are added or deleted to accommodate the number of rows in a recordset returned by a query."/>
			<property name="refreshing" code="2130" type="boolean" access="r" description="Returns true if there's a background query in progress for the specified query table."/>
			<property name="result range" code="2136" type="range" access="r" description="Returns a range object that represents the area of the worksheet occupied by the specified query table."/>
			<property name="row numbers" code="2128" type="boolean" description="Returns or sets if row numbers are added as the first column of the specified query table."/>
			<property name="save data" code="1909" type="boolean" description="Returns or sets if data for the query table is saved with the workbook."/>
			<property name="save password" code="1887" type="boolean" description="Returns or sets if password information in an ODBC connection string is saved with the specified query."/>
			<property name="sql" code="1886" type="text" description="Returns or sets the SQL query string used with the specified ODBC data source."/>
			<property name="tables only from html" code="2139" type="boolean" description="Returns or sets if only the HTML tables in the document are read when a query table is refreshed. False if the entire HTML document is read when a query table is refreshed. This property has an effect only when the query table is using a URL connection."/>
			<property name="text file column data types" code="2152" description="A list of enums: general format, text format, MDY format, DMY format, YMD format, MYD format, DYM format, YDM format, skip column">
				<type type="XlColumnDataType" list="yes"/>
			</property>
			<property name="text file comma delimiter" code="2149" type="boolean" description="Returns or sets if the comma character is the delimiter when you import a text file into a query table."/>
			<property name="text file consecutive delimiter" code="2146" type="boolean" description="Returns or sets if consecutive delimiters are treated as a single delimiter when you import a text file into a query table."/>
			<property name="text file decimal separator" code="2156" type="text" description="Returns or sets the decimal separator character that Microsoft Excel uses when you import a text file into a query table. The default is the system decimal separator character."/>
			<property name="text file fixed column widths" code="2153" description="Returns or sets a list of numbers that correspond to the widths of the columns in the text file that you are importing into a query table. Valid widths are from 1 through 32767 characters.">
				<type type="integer" list="yes"/>
			</property>
			<property name="text file other delimiter" code="2151" type="text" description="Returns or sets the character used as the delimiter when you import a text file into a query table."/>
			<property name="text file parse type" code="2144" type="XlTextParsingType" description="Returns or sets the column format for the data in the text file that you're importing into a query table."/>
			<property name="text file platform" code="2142" type="integer" description="Returns or sets the origin of the text file you're importing into the query table. This property determines which code page is used during the data import."/>
			<property name="text file prompt on refresh" code="2154" type="boolean" description="Returns or sets if you want to specify the name of the imported text file each time the query table is refreshed."/>
			<property name="text file semicolon delimiter" code="2148" type="boolean" description="Returns or sets if the semicolon character is the delimiter when you import a text file into a query table."/>
			<property name="text file space delimiter" code="2150" type="boolean" description="Returns or sets if the space character is the delimiter when you import a text file into a query table."/>
			<property name="text file start row" code="2143" type="integer" description="Returns or sets the row number at which text parsing will begin when you import a text file into a query table. Valid values are integers from 1 through 32767. The default value is 1."/>
			<property name="text file tab delimiter" code="2147" type="boolean" description="Returns or sets if the tab character is the delimiter when you import a text file into a query table."/>
			<property name="text file text qualifier" code="2145" type="XlTextQualifier" description="Returns or sets the text qualifier when you import a text file into a query table. The text qualifier specifies that the enclosed data is in text format."/>
			<property name="text file thousands separator" code="2157" type="text" description="Returns or sets the thousands separator character thatMicrosoft Excel uses when you import a text file into a query table. The default is the system thousands separator character."/>
		</class>
		<class name="recent file" code="X125" description="Represents a file in the list of recently used files." plural="recent files">
			<property name="entry_index" code="MSix" type="integer" access="r" description="Returns the index number of the object within the elements of the parent object."/>
			<property name="name" code="pnam" type="text" access="r" description="Returns the name of the object."/>
			<property name="path" code="1289" type="text" access="r" description="Returns the complete path to the file, excluding the final separator and name of the file."/>
		</class>
		<class name="rectangular gradient" code="X303" description="The RectangularGradient object transitions through a series of colors from the center to one or more sides.">
			<property name="colorstops" code="2541" type="colorstops" access="r" description="Returns the ColorStops for the LinearGradient object."/>
			<property name="rectangular gradient bottom" code="2542" type="real" description="Represents the point or vector that the gradient fill converges to."/>
			<property name="rectangular gradient left" code="2543" type="real" description="Represents the point or vector that the gradient fill converges to."/>
			<property name="rectangular gradient right" code="2544" type="real" description="Represents the point or vector that the gradient fill converges to."/>
			<property name="rectangular gradient top" code="2545" type="real" description="Represents the point or vector that the gradient fill converges to."/>
		</class>
		<class name="row field" code="XPFr" inherits="pivot field" plural="row fields"/>
		<class name="row item" code="XPIr" inherits="pivot item" plural="row items"/>
		<class name="scenario" code="X191" description="Represents a scenario on a worksheet. Represents a scenario on a worksheet. A scenario is a group of input values, called changing cells, that's named and saved." plural="scenarios">
			<property name="Excel comment" code="X229" type="text" description="Returns or sets the comment associated with the scenario. The comment text cannot exceed 255 characters."/>
			<property name="changing cells" code="2023" type="range" access="r" description="Returns a range object that represents the changing cells for a scenario."/>
			<property name="entry_index" code="MSix" type="integer" access="r" description="Returns the index number of the object within the elements of the parent object."/>
			<property name="hidden" code="1574" type="boolean" description=" Returns or sets if the scenario is hidden."/>
			<property name="locked" code="1584" type="boolean" description="Returns or sets if the object is locked."/>
			<property name="name" code="pnam" type="text" description="Returns or sets the name of the object."/>
		</class>
		<class name="scrollbar" code="XSrl" plural="scrollbars">
			<property name="bottom right cell" code="1983" type="range" access="r" description="Returns the bottom right cell of the range the control is occupying."/>
			<property name="display threeD shading" code="2002" type="boolean"/>
			<property name="enabled" code="enbl" type="boolean" description="Returns or sets if the object is enabled."/>
			<property name="entry_index" code="MSix" type="integer" access="r" description="Returns the index number of the object within the elements of the parent object."/>
			<property name="height" code="hght" type="real" description="Returns or set the height of the object."/>
			<property name="large change" code="2010" type="integer"/>
			<property name="left position" code="plft" type="real" description="Returns or sets the position of the specified object, in points."/>
			<property name="linked cell" code="2003" type="text"/>
			<property name="locked" code="1584" type="boolean" description="Returns or sets if the object is locked, if false the object can be modified when the sheet is protected."/>
			<property name="maximum value" code="XSMv" type="integer"/>
			<property name="minimum value" code="XSmv" type="integer"/>
			<property name="name" code="pnam" type="text" description="Returns or sets the name of the object."/>
			<property name="on action" code="BCOa" type="text" description="Returns or sets the name of a string of AppleScript commands that will be executed when the object is clicked on. Please note that if AppleScript commands are set they will not be saved with the document."/>
			<property name="placement" code="1986" type="XlPlacement" description="Returns or sets how the object is placed on the worksheet."/>
			<property name="print object" code="1987" type="boolean" description="Returns or sets if this object is printed."/>
			<property name="small change" code="2009" type="integer"/>
			<property name="top" code="ptop" type="real" description="Returns the top position of the specified object, in points."/>
			<property name="top left cell" code="1989" type="range" access="r" description="Returns a range object that represents the cell that lies under the upper-left corner of the specified object. "/>
			<property name="value" code="DPVu" type="integer"/>
			<property name="visible" code="pvis" type="boolean" description="Returns or sets if the object is visible."/>
			<property name="width" code="pwid" type="real" description="Returns or sets  the width of the object."/>
			<property name="z order position" code="2364" type="integer" access="r" description="Returns the z-order position of the object."/>
		</class>
		<class name="sheet" code="X128" description="Represents a worksheet." plural="sheets">
			<element type="shape"/>
			<element type="arc"/>
			<element type="button"/>
			<element type="chart object"/>
			<element type="checkbox"/>
			<element type="dropdown"/>
			<element type="groupbox"/>
			<element type="label"/>
			<element type="line"/>
			<element type="listbox"/>
			<element type="named item"/>
			<element type="option button"/>
			<element type="oval"/>
			<element type="pivot table"/>
			<element type="range"/>
			<element type="cell"/>
			<element type="row"/>
			<element type="column"/>
			<element type="rectangle"/>
			<element type="scenario"/>
			<element type="scrollbar"/>
			<element type="spinner"/>
			<element type="textbox"/>
			<element type="horizontal page break"/>
			<element type="vertical page break"/>
			<element type="query table"/>
			<element type="Excel comment"/>
			<element type="hyperlink"/>
			<element type="list object"/>
			<property name="autofilter mode" code="1732" type="boolean" description="Returns or sets if the autofilter drop-down arrows are currently displayed on the sheet. This property is independent of the filter mode property. "/>
			<property name="autofilter object" code="AfOj" type="autofilter" access="r" description="Returns the autofilter object associated with this sheet."/>
			<property name="circular reference" code="1734" type="range" access="r" description="Returns a range object that represents the range containing the first circular reference on the sheet, or returns missing value if there's no circular reference on the sheet."/>
			<property name="consolidation function" code="1736" type="XlConsolidationFunction" access="r" description="Returns the function code used for the current consolidation."/>
			<property name="consolidation options" code="COPT" access="r" description="Returns a three-element list of boolean values. If the element is true, that option is set. Element 1 is use labels in top row, element 2 is use labels in left column, and element 3 is create links to source data.">
				<type type="boolean" list="yes"/>
			</property>
			<property name="consolidation sources" code="1738" access="r" description="Returns an list of string values that name the source sheets for the worksheet's current consolidation.">
				<type type="text" list="yes"/>
			</property>
			<property name="display page breaks" code="1760" type="boolean" description="Returns or sets if page breaks, both automatic and manual, on the specified worksheet are displayed."/>
			<property name="enable autofilter" code="1739" type="boolean" description="Returns or sets if autofilter arrows are enabled when user-interface-only protection is turned on."/>
			<property name="enable calculation" code="1733" type="boolean" description="Returns or sets if Microsoft Excel automatically recalculates the worksheet when necessary. If false, the user cannot request a recalculation, Microsoft Excel never recalculates the sheet automatically."/>
			<property name="enable outlining" code="1741" type="boolean" description="Returns or sets if outlining symbols are enabled when user-interface-only protection is turned on."/>
			<property name="enable pivot table" code="1742" type="boolean" description="Returns or sets if pivot table controls and actions are enabled when user-interface-only protection is turned on."/>
			<property name="entry_index" code="MSix" type="integer" access="r" description="Returns the index number of the object within the elements of the parent object."/>
			<property name="filter mode" code="1743" type="boolean" access="r" description="Returns true if the worksheet is in filter mode."/>
			<property name="name" code="pnam" type="text" description="Returns or sets the name of the object."/>
			<property name="next" code="1591" type="sheet" access="r" description="Returns a worksheet object that represents the next sheet."/>
			<property name="outline object" code="1745" type="outline" access="r" description="Returns an outline object that represents the outline for the specified worksheet."/>
			<property name="page setup object" code="1654" type="page setup" access="r" description="Returns the page setup object associated with this chart."/>
			<property name="previous" code="1606" type="sheet" access="r" description="Returns a worksheet object that represents the previous sheet."/>
			<property name="protect contents" code="1656" type="boolean" access="r" description="Returns true if the contents of the sheet are protected."/>
			<property name="protect drawing objects" code="1657" type="boolean" access="r" description="Returns true if shapes are protected."/>
			<property name="protection mode" code="1658" type="boolean" access="r" description="Returns true if user-interface-only protection is turned on. To turn on user interface protection, use the protect method with the user interface only argument set to true."/>
			<property name="protection object" code="2447" type="Protection" access="r" description="Returns a Protection object that represents the protection options of the worksheet."/>
			<property name="scroll area" code="1749" type="text" description="Returns or sets the range where scrolling is allowed, as an A1-style range reference. Cells outside the scroll area cannot be selected. "/>
			<property name="sheet tab" code="2551" type="tab" access="r" description="Returns the sheet tab of the work sheet"/>
			<property name="sort object" code="2533" type="sort" access="r" description="Returns the sort object in the sheet."/>
			<property name="standard height" code="1752" type="real" access="r" description="Returns the standard default height of all the rows in the worksheet, in points. "/>
			<property name="standard width" code="1753" type="real" description="Returns or sets the standard default width of all the columns in the worksheet."/>
			<property name="transition expression evaluation" code="1731" type="boolean" description="Returns or sets if Microsoft Excel uses Lotus 1-2-3 expression evaluation rules for the worksheet."/>
			<property name="used range" code="1756" type="range" access="r" description="Returns a range object that represents the used range on the specified worksheet."/>
			<property name="visible" code="pvis" type="XlSheetVisibility" description="Returns or sets if the worksheet is visible."/>
			<property name="worksheet type" code="1755" type="XlSheetType" access="r" description="Returns the type of this worksheet."/>
		</class>
		<class name="slicer" code="X906" description="A slicer is a mechanism for filtering data in PivotTable views and cube functions." plural="slicers"/>
		<class name="sort" code="Xsrt" description="Represents a sort of a range of data.">
			<property name="match case" code="2512" type="boolean" description="Set to true to perform a case-sensitive sort or set to false to perform non-case sensitive sort. Read/Write."/>
			<property name="sort header" code="2513" type="XlYesNoGuess" description="Specifies whether the first row contains header information. Read/Write."/>
			<property name="sort method" code="2515" type="XlSortMethod" description="Specifies the sort method for Chinese/Japanese languages. Read/Write."/>
			<property name="sort orientation" code="2514" type="XlSortOrientation" description="Specifies the orientation for the sort. Read/Write."/>
			<property name="sortfieldset" code="Xsfs" type="null" access="r" description="Stores the sort state for workbooks, lists, and autofilters. Read-Only."/>
			<property name="sortrange" code="2511" type="range" access="r" description="Returns a range object that represents the range to which the specified sort applies. Read Only."/>
		</class>
		<class name="sortfield" code="Xsfd" description="The sortfield object contains all the sort information for the worksheet, lists, and autofilter object.">
			<property name="custom order" code="2524" type="null" description="Specifies a custom order to sort the fields. Read/Write."/>
			<property name="sort data option" code="2525" type="XlSortDataOption" description="Specifies how to sort text in the range specified in sortfield object. Read/Write."/>
			<property name="sort key" code="2522" type="range" access="r" description="Specifies the range that is currently being sorted on. Read only."/>
			<property name="sort on" code="2520" type="XlSortOn" description="Returns or sets what attribute of the cell to sort on. Read/Write."/>
			<property name="sort on values" code="2521" type="null" access="r" description="Return the value on which the sort is performed for the specified sortfield object. Read Only."/>
			<property name="sort order" code="2523" type="XlSortOrder" description="Determines the sort order for the values specified in the key. Read/Write."/>
			<property name="sort priority" code="2526" type="integer" description="Specifies the priority for the sortfield. Read/Write."/>
		</class>
		<class name="sortfieldset" code="Xsfs" description="The sortfieldset collection is a collection of sortfield objects. It allows developers to store a sort state on worksheets, lists, and autofilters."/>
		<class name="spinner" code="XSpn" plural="spinners">
			<property name="bottom right cell" code="1983" type="range" access="r" description="Returns the bottom right cell of the range the control is occupying."/>
			<property name="display threeD shading" code="2002" type="boolean" description="Returns or sets whether a 3-d effect will be employed when displaying the control"/>
			<property name="enabled" code="enbl" type="boolean" description="Returns or sets if the control is enabled"/>
			<property name="entry_index" code="MSix" type="integer" access="r" description="Returns the index number of the object within the elements of the parent object."/>
			<property name="height" code="hght" type="real" description="Returns or sets the height of the control."/>
			<property name="left position" code="plft" type="real" description="Returns or sets the left position of the control"/>
			<property name="linked cell" code="2003" type="text" description="Returns or sets reference to a call which contains the value of the control."/>
			<property name="locked" code="1584" type="boolean" description="Returns or sets whether the control is locked for editing."/>
			<property name="maximum value" code="XSMv" type="integer" description="Returns or sets the maximum value allowed"/>
			<property name="minimum value" code="XSmv" type="integer" description="Returns or sets the minimum value allowed"/>
			<property name="name" code="pnam" type="text" description="Returns or sets the name of this control"/>
			<property name="on action" code="BCOa" type="text" description="Returns or sets the name of a string of AppleScript commands that will be executed when the object is clicked on. Please note that if AppleScript commands are set they will not be saved with the document."/>
			<property name="placement" code="1986" type="XlPlacement" description="Returns or sets how the object is placed on the worksheet."/>
			<property name="print object" code="1987" type="boolean" description="Returns or sets if this object is printed."/>
			<property name="small change" code="2009" type="integer" description="Returns or sets the change in value of one click on the spinner control."/>
			<property name="top" code="ptop" type="real" description="Returns or sets the position of the top of the control."/>
			<property name="top left cell" code="1989" type="range" access="r" description="Returns the top left cell of the range within which the control is positioned."/>
			<property name="value" code="DPVu" type="integer" description="Returns or sets the current value of the control"/>
			<property name="visible" code="pvis" type="boolean" description="Returns or sets if the control is visible"/>
			<property name="width" code="pwid" type="real" description="Returns or sets  the width of the object."/>
			<property name="z order position" code="2364" type="integer" access="r" description="Returns the most recently set z order position, bring shape to front/send shape to back/bring shape forward/send shape backward/bring shape in front of text/send shape behind text."/>
		</class>
		<class name="tab" code="Xtab" description="Represents the sheet tab of a work sheet or chart sheet.">
			<property name="color" code="colr">
				<type type="integer" list="yes"/>
			</property>
			<property name="color index" code="1098" type="XlColorIndex"/>
			<property name="theme color" code="DThC" type="XlThemeColor"/>
			<property name="tint and shade" code="2535" type="real"/>
		</class>
		<class name="table style element" code="TSET" description="Represents a table style element" plural="table style elements">
			<property name="font object" code="XftO" type="font" access="r" description="Returns a font object that represents the font of the specified object."/>
			<property name="has format" code="2610" type="boolean" access="r" description="Returns or sets if table style element has format."/>
			<property name="interior object" code="XitO" type="interior" access="r" description="Returns a interior object that represents the interior for the specified table style element. "/>
		</class>
		<class name="table style" code="1936" description="Represents a table style" plural="table styles">
			<element type="table style element"/>
			<property name="built in" code="pBtN" type="boolean" access="r" description="if this is a built in table style or not"/>
			<property name="default" code="2503" type="text" access="r"/>
			<property name="name" code="pnam" type="text" access="r" description="Returns or sets the name of the object."/>
			<property name="namelocal" code="2611" type="text" access="r" description="Returns or sets the local name of the object."/>
			<property name="show as available pivot table style" code="2613" type="boolean" description="whether to show as avaliable pivot table style"/>
			<property name="show as available table style" code="2612" type="boolean" description="whether to show as avaliable table style"/>
		</class>
		<class name="textbox" code="XTbx" plural="textboxes">
			<element type="character"/>
			<property name="add indent" code="1514" type="boolean" description="Returns or sets if text is automatically indented when the text alignment in a cell is set to equal distribution either horizontally or vertically."/>
			<property name="auto scale font" code="1992" type="boolean" description="Returns or sets  if the text in the object changes font size when the object size changes."/>
			<property name="auto size" code="1993" type="boolean" description="Returns or sets if the size of the specified object is changed automatically to fit text within its boundaries."/>
			<property name="border" code="X251" type="border" access="r" description="Returns a border object that represents the border of the object. "/>
			<property name="bottom right cell" code="1983" type="range" access="r" description="Returns the bottom right cell of the range the control is occupying."/>
			<property name="caption" code="1108" type="text" description="Returns or sets the caption for this object."/>
			<property name="entry_index" code="MSix" type="integer" access="r" description="Returns the index number of the object within the elements of the parent object."/>
			<property name="font object" code="XftO" type="font" access="r" description="Returns a font object that represents the font of the specified object."/>
			<property name="formula" code="1562" type="text" description="Returns or sets the object's formula, in A1-style notation and in the language of the macro."/>
			<property name="height" code="hght" type="real" description="Returns or set the height of the object."/>
			<property name="horizontal alignment" code="1575" type="XlHAlign" description="Returns or sets the horizontal alignment for the object."/>
			<property name="interior object" code="XitO" type="interior" access="r" description="Returns an interior object that represents the interior of the specified object."/>
			<property name="left position" code="plft" type="real" description="Returns or sets the position of the specified object, in points."/>
			<property name="locked" code="1584" type="boolean" description="Returns or sets if the object is locked, if false the object can be modified when the sheet is protected."/>
			<property name="locked text" code="1994" type="boolean" description="Returns or sets whether the control's text is locked for editing."/>
			<property name="name" code="pnam" type="text" description="Returns or sets the name of the object."/>
			<property name="on action" code="BCOa" type="text" description="Returns or sets the name of a string of AppleScript commands that will be executed when the object is clicked on. Please note that if AppleScript commands are set they will not be saved with the document."/>
			<property name="orientation" code="1596" type="XlOrientation" description="May also be a number value from -90 to 90 degrees."/>
			<property name="placement" code="1986" type="XlPlacement" description="Returns or sets how the object is placed on the worksheet."/>
			<property name="print object" code="1987" type="boolean" description="Returns or sets if this object is printed."/>
			<property name="reading order" code="1639" type="XLDefaultSheetDir" description="Returns or sets the reading order for the specified object."/>
			<property name="rounded corners" code="2028" type="boolean"/>
			<property name="shadow" code="shad" type="boolean"/>
			<property name="string value" code="XRgt" type="text" description="Returns or sets the text of the specified object."/>
			<property name="top" code="ptop" type="real" description="Returns the top position of the specified object, in points."/>
			<property name="top left cell" code="1989" type="range" access="r" description="Returns a range object that represents the cell that lies under the upper-left corner of the specified object. "/>
			<property name="vertical alignment" code="1631" type="XlVerticalAlignmentTarget" description="Returns or sets the vertical alignment of the object."/>
			<property name="visible" code="pvis" type="boolean" description="Returns or sets if the object is visible."/>
			<property name="width" code="pwid" type="real" description="Returns or sets  the width of the object."/>
			<property name="z order position" code="2364" type="integer" access="r" description="Returns the z-order position of the object."/>
		</class>
		<class name="top 10 format condition" code="X321">
			<property name="applies to" code="2568" type="range" access="r" description="Returns the range this format condition applies to. Read Only."/>
			<property name="calc for" code="2603" type="XlCalcFor"/>
			<property name="font object" code="XftO" type="font" access="r" description="Returns a font object that represents the font of the specified object."/>
			<property name="format condition priority" code="2566" type="integer" description="Specifies the priority for the format condition. Read/Write."/>
			<property name="format condition type" code="2119" type="XlFormatConditionType" access="r" description="Return the conditional format type."/>
			<property name="interior object" code="XitO" type="interior" access="r" description="Returns an interior object that represents the interior of the specified object."/>
			<property name="number format" code="1593" type="text" description="Returns or sets the format code for the object."/>
			<property name="pivot condition scope type" code="2574" type="XlPivotConditionScope" description="Returns or sets the part of the pivot table that the pivot table format condition is scoped to"/>
			<property name="pivot table condition" code="2573" type="boolean" access="r" description="Tells whether this format condition is a pivot table condition."/>
			<property name="stop if true" code="2567" type="boolean" access="r" description="Tells whether the processing of format conditions stops if this condition is true. Read Only."/>
			<property name="top 10 percentage" code="2602" type="boolean"/>
			<property name="top 10 rank" code="2601" type="integer"/>
			<property name="top or bottom" code="2600" type="XlTopBottom"/>
		</class>
		<class name="treeview control" code="X911" description="Represents the hierarchical member-selection control of a cube field.">
			<property name="drilled" code="CK25" type="null"/>
			<property name="hidden" code="1574" type="null"/>
		</class>
		<class name="unique values format condition" code="X323">
			<property name="applies to" code="2568" type="range" access="r" description="Returns the range this format condition applies to. Read Only."/>
			<property name="duplicate or unique" code="2606" type="XlDupeUnique"/>
			<property name="font object" code="XftO" type="font" access="r" description="Returns a font object that represents the font of the specified object."/>
			<property name="format condition priority" code="2566" type="integer" description="Specifies the priority for the format condition. Read/Write."/>
			<property name="format condition type" code="2119" type="XlFormatConditionType" access="r" description="Return the conditional format type."/>
			<property name="interior object" code="XitO" type="interior" access="r" description="Returns an interior object that represents the interior of the specified object."/>
			<property name="number format" code="1593" type="text" description="Returns or sets the format code for the object."/>
			<property name="pivot condition scope type" code="2574" type="XlPivotConditionScope" description="Returns or sets the part of the pivot table that the pivot table format condition is scoped to"/>
			<property name="pivot table condition" code="2573" type="boolean" access="r" description="Tells whether this format condition is a pivot table condition."/>
			<property name="stop if true" code="2567" type="boolean" access="r" description="Tells whether the processing of format conditions stops if this condition is true. Read Only."/>
		</class>
		<class name="validation" code="X237" description="Represents data validation for a worksheet range." plural="validations">
			<property name="IME mode" code="2171" type="XlIMEMode" description="Returns or sets the description of the Japanese input rules."/>
			<property name="alert style" code="2169" type="XlDVAlertStyle" access="r" description="Returns the validation alert style."/>
			<property name="error message" code="2173" type="text" description="Returns or sets the data validation error message."/>
			<property name="error title" code="2174" type="text" description="Returns or sets the title of the data-validation error dialog box."/>
			<property name="formula1" code="2121" type="text" access="r" description="Returns the value or expression associated with the conditional format or data validation."/>
			<property name="formula2" code="2122" type="text" access="r" description="Returns the value or expression associated with the second part of a conditional format or data validation. Used only when the data validation conditional format Operator property is operator between or operator not between."/>
			<property name="ignore blank" code="2170" type="boolean" description="Returns or sets if blank values are permitted by the range data validation."/>
			<property name="in cell dropdown" code="2172" type="boolean" description="Returns or sets if data validation displays a drop-down list that contains acceptable values."/>
			<property name="input message" code="2175" type="text" description="Returns or sets the data validation input message."/>
			<property name="input title" code="2176" type="text" description="Returns or sets the title of the data-validation input dialog box."/>
			<property name="show error" code="2177" type="boolean" description="Returns or sets if the data validation error message will be displayed whenever the user enters invalid data."/>
			<property name="show input" code="2178" type="boolean" description="Returns or sets if the data validation input message will be displayed whenever the user selects a cell in the data validation range."/>
			<property name="validation operator" code="XlVo" type="XlFormatConditionOperator" access="r" description="Returns the operator for the conditional format or data validation."/>
			<property name="validation type" code="2179" type="XlDVType" access="r" description="Returns the data validation type."/>
			<property name="value" code="DPVu" type="boolean" access="r" description="Returns true if all the validation criteria are met, that is, if the range contains valid data."/>
		</class>
		<class name="value change" code="X905">
			<property name="allocation method" code="CL30" type="XlAllocationMethod" access="r"/>
			<property name="allocation value" code="CL29" type="XlAllocationValue" access="r"/>
			<property name="allocation weight expression" code="CL31" type="text" access="r"/>
			<property name="order" code="CL22" type="integer" access="r"/>
			<property name="pivot cell" code="CL24" type="pivot cell" access="r"/>
			<property name="tuple" code="CL27" type="text" access="r"/>
			<property name="value" code="CL28" type="real" access="r"/>
			<property name="visible in pivot table" code="CL23" type="boolean" access="r"/>
		</class>
		<class name="vertical page break" code="X121" description="Represents a vertical page break. " plural="vertical page breaks">
			<property name="extent" code="1725" type="XlPageBreakExtent" access="r" description="Returns the type of the specified page break: full-screen or only within a print area."/>
			<property name="location" code="1694" type="range" description="Returns or sets where this vertical page break is located."/>
			<property name="vertical page break type" code="1724" type="XlPageBreak" description="Returns or sets the type of vertical page break."/>
		</class>
		<class name="web options" code="X301" description="Contains workbook-level attributes used by Microsoft Excel when you save a document as a Web page or open a Web page.">
			<property name="allow png" code="2400" type="boolean" description="Returns or sets if PNG, Portable Network Graphics, is allowed as an image format when you save documents as a Web page."/>
			<property name="encoding" code="2404" type="MsoEncoding" description="Returns or sets the document encoding, code page or character set, to be used by the Web browser when you view the saved document."/>
			<property name="location of components" code="2403" type="text" description="Returns or sets the central URL, on the intranet or Web, or path, local or network, to the location from which authorized users can download Microsoft Office Web components when viewing your saved document."/>
			<property name="pixels per inch" code="2402" type="integer" description="Returns or sets the density, pixels per inch, of graphics images and table cells on a Web page. The range of settings is usually from 19 to 480, and common settings for popular screen sizes are 72, 96, and 120."/>
			<property name="screen size" code="2401" type="MsoScreenSize" access="r" description="Returns the ideal minimum screen size, width by height, in pixels, that you should use when viewing the saved document in a Web browser."/>
		</class>
		<class name="window" code="cwin" description="Represents a window. Many worksheet characteristics, such as scroll bars and gridlines, are actually properties of the window." inherits="window" plural="windows">
			<element type="pane"/>
			<property name="active cell" code="1104" type="cell" access="r" description="Returns a range object that represents the active cell in the active window, the window on top,  or in the specified window. If the window isn't displaying a worksheet, this property fails."/>
			<property name="active pane" code="1106" type="pane" access="r" description="Returns a pane object that represents the active pane in the active window, the window on top,  or in the specified window. If the window isn't displaying a worksheet, this property fails."/>
			<property name="active sheet" code="1107" type="sheet" access="r" description="Returns an object that represents the active sheet, the sheet on top, in the active workbook or in the specified window or workbook."/>
			<property name="caption" code="1108" type="text" description="Returns or sets the name that appears in the title bar of the document window. "/>
			<property name="date grouping" code="2534" type="boolean" description="Returns or sets the date grouping flag in the window."/>
			<property name="display formulas" code="1110" type="boolean" description="Returns or set if the window is displaying formulas.  If false, the window is displaying values."/>
			<property name="display gridlines" code="1111" type="boolean" description="Returns or sets if gridlines are displayed."/>
			<property name="display headings" code="1112" type="boolean" description="Returns or sets if both row and column headings are displayed."/>
			<property name="display horizontal scroll bar" code="1113" type="boolean" description="Returns or sets if the horizontal scroll bar is displayed."/>
			<property name="display outline" code="1114" type="boolean" description="Returns or sets if outline symbols are displayed."/>
			<property name="display vertical scroll bar" code="1116" type="boolean" description="Returns or sets if the vertical scroll bar is displayed."/>
			<property name="display workbook tabs" code="1117" type="boolean" description="Returns or sets if the workbook tabs are displayed."/>
			<property name="display zeros" code="1118" type="boolean" description="Returns or sets if zero values are displayed."/>
			<property name="enable resize" code="1119" type="boolean" description="Returns or sets if the window can be resized. "/>
			<property name="entry_index" code="MSix" type="integer" access="r" description="Returns the index of this item in the element list of windows."/>
			<property name="freeze panes" code="1120" type="boolean" description="Returns or sets if split panes are frozen. It's possible for freeze panes to be true and split to be false, or vice versa. This property applies only to worksheets and macro sheets."/>
			<property name="gridline color" code="1121" description="Returns or sets the gridline color as an RGB value. ">
				<type type="integer" list="yes"/>
			</property>
			<property name="gridline color index" code="1122" type="XlColorIndex" description="Returns or sets the gridline color as an index into the current color palette."/>
			<property name="height" code="hght" type="real" description="Returns or sets the height of the window. Use the usable height property to determine the maximum size for the window. You cannot set this property if the window is maximized or minimized. Use the window state property to determine the window state."/>
			<property name="left position" code="plft" type="real" description="Returns or sets the distance from the left edge of the client area to the left edge of the window."/>
			<property name="range selection" code="1130" type="range" access="r" description="Returns a range object that represents the selected cells on the worksheet in the specified window even if a graphic object is active or selected on the worksheet."/>
			<property name="scroll column" code="1131" type="integer" description="Returns or sets the number of the leftmost column in the window. "/>
			<property name="scroll row" code="1132" type="integer" description="Returns or sets the number of the row that appears at the top of the window."/>
			<property name="selected sheets" code="1134" access="r" description="Returns a list of sheet objects that represents all the selected sheets in the specified window.">
				<type type="text" list="yes"/>
			</property>
			<property name="selection" code="sele" type="range" access="r" description="Returns the selected range object in the specified window."/>
			<property name="split" code="1136" type="boolean" description="Returns or sets if the window is split. "/>
			<property name="split column" code="1137" type="integer" description="Returns or sets the column number where the window is split into panes, the number of columns to the left of the split line."/>
			<property name="split horizontal" code="1138" type="real" description="Returns or sets the location of the horizontal window split, in points."/>
			<property name="split row" code="1139" type="integer" description="Returns or sets the row number where the window is split into panes, the number of rows above the split."/>
			<property name="split vertical" code="1140" type="real" description="Returns or sets the location of the vertical window split, in points."/>
			<property name="tab ratio" code="1141" type="real" description="Returns or sets the ratio of the width of the workbook's tab area to the width of the window's horizontal scroll bar, as a number between 0 and 1, the default value is 0.75. "/>
			<property name="top" code="ptop" type="real" description=" The distance from the top edge of the window to the top edge of the usable area, below the menus, any toolbars docked at the top, and the formula bar. You cannot set this property for a maximized window."/>
			<property name="usable height" code="1143" type="real" access="r" description="Returns the maximum height of the space that a window can occupy in points."/>
			<property name="usable width" code="1144" type="real" access="r" description="Returns the maximum width of the space that a window can occupy in the application window area, in points."/>
			<property name="view" code="1149" type="XlWindowView" description="Returns or sets the view showing in the window."/>
			<property name="visible" code="pvis" type="boolean" description="Returns or sets if the window is visible."/>
			<property name="visible range" code="1145" type="range" access="r" description="Returns a range object that represents the range of cells that are visible in the window or pane. If a column or row is partially visible, it's included in the range. "/>
			<property name="width" code="pwid" type="real" description="Returns or sets the width of the window."/>
			<property name="window number" code="1146" type="integer" access="r" description="Returns the window number. For example, a window named Book1.xls:2 has 2 as its window number. Most windows have the window number 1."/>
			<property name="window state" code="1147" type="XlWindowState" description="Returns or sets the state of the window."/>
			<property name="window type" code="1142" type="XlWindowType" access="r" description="Returns the window type."/>
			<property name="zoom" code="1148" type="XLZoomType" description="Returns or sets the display size of the window, as a percentage,100 equals normal size, 200 equals double size, and so on. "/>
		</class>
		<class name="workbook connection" code="X904" description="A connection is a set of information needed to obtain data from an external data source other than an 1st_Excel12 workbook.">
			<property name="_default" code="CL20" type="text" access="r"/>
			<property name="description" code="CL19" type="text" access="r" description="Returns or sets a brief description for a WorkbookConnection object."/>
			<property name="name" code="CL18" type="text" access="r" description="Returns or sets the name of the workbook connection object."/>
			<property name="ranges" code="CL24" type="null" access="r" description="Returns the range of object for the specified WorkbookConnection object."/>
			<property name="type" code="CL21" type="XlConnectionType" access="r"/>
		</class>
		<class name="workbook" code="X141" description="Represents a Microsoft Excel workbook." plural="workbooks">
			<element type="document property"/>
			<element type="chart sheet"/>
			<element type="command bar"/>
			<element type="custom document property"/>
			<element type="named item"/>
			<element type="pivot cache"/>
			<element type="sheet"/>
			<element type="style"/>
			<element type="custom view"/>
			<element type="window"/>
			<element type="worksheet"/>
			<element type="international macro sheet"/>
			<element type="macro sheet"/>
			<element type="table style"/>
			<property name="accept labels in formulas" code="1796" type="boolean" description="Returns or sets if labels can be used in worksheet formulas."/>
			<property name="accuracy version" code="1340" type="integer" description="Returns or sets the accuracy version for this workbook."/>
			<property name="active sheet" code="1107" type="sheet" access="r" description="Returns an object that represents the active sheet, the sheet on top, in the specified window."/>
			<property name="auto update frequency" code="1797" type="integer" description="Returns or sets the number of minutes between automatic updates to the shared workbook. If this property is set to zero  updates occur only when the workbook is saved."/>
			<property name="auto update save changes" code="1798" type="boolean" description="Returns or sets if current changes to the shared workbook are posted to other users whenever the workbook is automatically updated. if false changes aren't posted, this workbook is still synchronized with changes made by other users."/>
			<property name="calculation version" code="1339" type="integer" access="r" description="Returns a number whose rightmost four digits are the minor calculation engine version number, and whose other digits, on the left, are the major version of Microsoft Excel."/>
			<property name="change history duration" code="1799" type="integer" description="Returns or sets the number of days shown in the shared workbook's change history."/>
			<property name="conflict resolution" code="1805" type="XlSaveConflictResolution" description="Returns or sets the way conflicts are to be resolved whenever a shared workbook is updated."/>
			<property name="create backup" code="1807" type="boolean" access="r" description="Returns true if a backup file is created when this file is saved."/>
			<property name="date 1904" code="1809" type="boolean" description="Returns or sets if the workbook uses the 1904 date system."/>
			<property name="default pivottable style" code="2619" type="null" description="Set or get the default pivot table style for the current workbook"/>
			<property name="default table style" code="DTS3" type="null" description="Set or get the default table style for the current workbook"/>
			<property name="display drawing objects" code="1811" type="XlDisplayDrawingObjects" description="Returns or sets how shapes are displayed."/>
			<property name="enable auto recover" code="2557" type="boolean" description="Gets or sets a value that indicates whether Microsoft Office Excel saves changed files, of all formats, on a timed interval."/>
			<property name="excel 8 compatibility mode" code="2562" type="boolean" access="r" description="Gets a value that indicates whether the workbook is in compatibility mode."/>
			<property name="file format" code="1813" type="XlFileFormat" access="r" description="Returns the file format of the workbook."/>
			<property name="full name" code="1773" type="text" access="r" description="Returns the name of the workbook, including its path on disk, as a string."/>
			<property name="full name urlencoded" code="2558" type="text" access="r" description="Returns a String indicating the name of the object, including its path on disk, as a string."/>
			<property name="has password" code="1814" type="boolean" access="r" description="Returns true if the workbook has a protection password."/>
			<property name="has vb project" code="2561" type="boolean" access="r" description="Gets a value that indicates whether a workbook has an attached Microsoft Visual Basic for Applications &lt;VBA&gt; project."/>
			<property name="highlight changes on screen" code="1857" type="boolean" description="Returns or sets if changes to the shared workbook are highlighted on-screen."/>
			<property name="inactive list border visible" code="2559" type="boolean" description="Gets or sets a value that indicates whether list borders are visible when a list is not active."/>
			<property name="is add in" code="1816" type="boolean" description="Returns or sets if the workbook is running as an add in."/>
			<property name="keep change history" code="1858" type="boolean" description="Returns or sets if change tracking is enabled for the shared workbook."/>
			<property name="list changes on new sheet" code="1859" type="boolean" description="Returns or sets if changes to the shared workbook are shown on a separate worksheet."/>
			<property name="multi user editing" code="1820" type="boolean" access="r" description="Returns true if the workbook is open as a shared list."/>
			<property name="name" code="pnam" type="text" access="r" description="Returns or sets the name of the workbook."/>
			<property name="password" code="1872" type="text" description="Returns or sets the password that must be supplied to open the specified workbook."/>
			<property name="path" code="1289" type="text" access="r" description="Returns the complete path of the object, excluding the final separator and name of the object."/>
			<property name="personal view list settings" code="1822" type="boolean" description="Returns or sets if filter and sort settings for lists are included in the user's personal view of the shared workbook."/>
			<property name="personal view print settings" code="1823" type="boolean" description="Returns or sets if print settings are included in the user's personal view of the shared workbook."/>
			<property name="precision as displayed" code="1826" type="boolean" description="Returns or sets if calculations in this workbook will be done using only the precision of the numbers as they're displayed."/>
			<property name="protect structure" code="1828" type="boolean" access="r" description="Returns true if the order of the sheets in the workbook is protected."/>
			<property name="protect windows" code="1829" type="boolean" access="r" description="Returns true if the windows of the workbook are protected."/>
			<property name="read only" code="1830" type="boolean" access="r" description="Returns true if the workbook has been opened as read-only."/>
			<property name="read only recommended" code="1874" type="boolean" description="Returns or sets if the workbook was saved as read-only recommended."/>
			<property name="remove personal information" code="1870" type="boolean" description="Returns or sets if personal information can be removed from the specified workbook."/>
			<property name="revision number" code="1835" type="integer" access="r" description="Returns the number of times the workbook has been saved while open as a shared list. If the workbook is open in exclusive mode, this property returns zero."/>
			<property name="save link values" code="1843" type="boolean" description="Returns or sets if Microsoft Excel saves external link values with the workbook."/>
			<property name="saved" code="1842" type="boolean" description="Returns or sets if no changes have been made to the specified workbook since it was last saved."/>
			<property name="show conflict history" code="1845" type="boolean" description="Returns or sets if the conflict history worksheet is visible in the workbook that's open as a shared list."/>
			<property name="template remove external data" code="1855" type="boolean" description="Returns or sets if external data references are removed when the workbook is saved as a template."/>
			<property name="theme" code="pThm" type="office theme" access="r" description="Represents a Microsoft Office theme."/>
			<property name="update remote references" code="1850" type="boolean" description="Returns or sets if Microsoft Excel updates remote references in for the workbook."/>
			<property name="user status" code="1851" access="r" description="Returns a list of lists that provides information about each user who has the workbook open as a shared list. The list is name of user, date and time user opened the workbook, and a number 1 for exclusive, 2 for shared access.">
				<type type="any" list="yes"/>
			</property>
			<property name="web options" code="X301" type="web options" access="r" description="Returns the web options object, which contains workbook-level attributes used by Microsoft Excel when you save a document as a Web page or open a Web page."/>
			<property name="workbook comments" code="XWBc" type="text" description="Returns or sets the comment string for this workbook."/>
			<property name="write password" code="1873" type="text" description="Returns or sets a string for the write password of a workbook."/>
			<property name="write reserved" code="1853" type="boolean" access="r" description="Return true if the workbook is write-reserved"/>
			<property name="write reserved by" code="1854" type="text" access="r" description="Returns the name of the user who currently has write permission for the workbook."/>
		</class>
		<class name="worksheet" code="XwSH" inherits="sheet" plural="worksheets">
			<property name="enable selection" code="1740" type="XlEnableSelection" description="Returns or sets what can be selected on the sheet."/>
			<property name="protect scenarios" code="1730" type="boolean" access="r" description="Returns true if the worksheet scenarios are protected."/>
		</class>
		<class name="xlspelling options" code="Xspo" description="Contains global application-level spelling options">
			<property name="dictionary lang" code="dila" type="XlLanguage" description="Returns or sets the LCID used by the proofing tools"/>
		</class>
		<enumeration name="XlChartGallery" code="e102">
			<enumerator name="built in chart" code="0x01f60015"/>
			<enumerator name="user defined" code="0x01f60016"/>
			<enumerator name="any gallery" code="0x01f60017"/>
		</enumeration>
		<enumeration name="XlColorIndex" code="e103">
			<enumerator name="color index automatic" code="0x01f6eff7"/>
			<enumerator name="color index none" code="0x01f6efd2"/>
			<enumerator name="a color index integer" code="0x01f70000"/>
		</enumeration>
		<enumeration name="XlEndStyleCap" code="e104">
			<enumerator name="cap" code="0x01f80001"/>
			<enumerator name="no cap" code="0x01f80002"/>
		</enumeration>
		<enumeration name="XlRowCol" code="e105">
			<enumerator name="by columns" code="0x01f90002"/>
			<enumerator name="by rows" code="0x01f90001"/>
		</enumeration>
		<enumeration name="XlScaleType" code="e106">
			<enumerator name="scale linear" code="0x01f9efdc"/>
			<enumerator name="scale logarithmic" code="0x01f9efdb"/>
		</enumeration>
		<enumeration name="XlDataSeriesType" code="e107">
			<enumerator name="autofill series" code="0x01fb0004"/>
			<enumerator name="chronological series" code="0x01fb0003"/>
			<enumerator name="growth series" code="0x01fb0002"/>
			<enumerator name="data series linear" code="0x01faefdc"/>
		</enumeration>
		<enumeration name="XlAxisCrosses" code="e108">
			<enumerator name="axis crosses automatic" code="0x01fbeff7"/>
			<enumerator name="axis crosses custom" code="0x01fbefee"/>
			<enumerator name="axis crosses maximum" code="0x01fc0002"/>
			<enumerator name="axis crosses minimum" code="0x01fc0004"/>
		</enumeration>
		<enumeration name="XlAxisGroup" code="e109">
			<enumerator name="primary axis" code="0x01fd0001"/>
			<enumerator name="secondary axis" code="0x01fd0002"/>
		</enumeration>
		<enumeration name="XlBackground" code="e110">
			<enumerator name="background automatic" code="0x01fdeff7"/>
			<enumerator name="background opaque" code="0x01fe0003"/>
			<enumerator name="background transparent" code="0x01fe0002"/>
		</enumeration>
		<enumeration name="XlWindowState" code="e111">
			<enumerator name="window state maximized" code="0x01feefd7"/>
			<enumerator name="window state minimized" code="0x01feefd4"/>
			<enumerator name="window state normal" code="0x01feefd1"/>
		</enumeration>
		<enumeration name="XlAxisType" code="e112">
			<enumerator name="category axis" code="0x02000001"/>
			<enumerator name="series axis" code="0x02000003"/>
			<enumerator name="value axis" code="0x02000002"/>
		</enumeration>
		<enumeration name="XlArrowHeadLength" code="e113">
			<enumerator name="arrowhead length long" code="0x02010003"/>
			<enumerator name="arrowhead length medium" code="0x0200efd6"/>
			<enumerator name="arrowhead length short" code="0x02010001"/>
		</enumeration>
		<enumeration name="XlVAlign" code="e114">
			<enumerator name="valign bottom" code="0x0201eff5"/>
			<enumerator name="valign center" code="0x0201eff4"/>
			<enumerator name="valign distributed" code="0x0201efeb"/>
			<enumerator name="valign justify" code="0x0201efde"/>
			<enumerator name="valign top" code="0x0201efc0"/>
		</enumeration>
		<enumeration name="XlTickMark" code="e115">
			<enumerator name="tick mark cross" code="0x02030004"/>
			<enumerator name="tick mark inside" code="0x02030002"/>
			<enumerator name="tick mark none" code="0x0202efd2"/>
			<enumerator name="tick mark outside" code="0x02030003"/>
		</enumeration>
		<enumeration name="XlErrorBarDirection" code="e116">
			<enumerator name="error bar direction x" code="0x0203efb8"/>
			<enumerator name="error bar direction y" code="0x02040001"/>
		</enumeration>
		<enumeration name="XlErrorBarInclude" code="e117">
			<enumerator name="error bar include both" code="0x02050001"/>
			<enumerator name="error bar include minus values" code="0x02050003"/>
			<enumerator name="error bar include none" code="0x0204efd2"/>
			<enumerator name="error bar include plus values" code="0x02050002"/>
		</enumeration>
		<enumeration name="XlDisplayBlanksAs" code="e118">
			<enumerator name="interpolated" code="0x02060003"/>
			<enumerator name="not plotted" code="0x02060001"/>
			<enumerator name="zero" code="0x02060002"/>
		</enumeration>
		<enumeration name="XlArrowHeadStyle" code="e119">
			<enumerator name="arrowhead style closed" code="0x02070003"/>
			<enumerator name="arrowhead style double closed" code="0x02070005"/>
			<enumerator name="arrowhead style double open" code="0x02070004"/>
			<enumerator name="arrowhead style none" code="0x0206efd2"/>
			<enumerator name="arrowhead style open" code="0x02070002"/>
		</enumeration>
		<enumeration name="XlArrowHeadWidth" code="e120">
			<enumerator name="arrowhead width medium" code="0x0207efd6"/>
			<enumerator name="arrowhead width narrow" code="0x02080001"/>
			<enumerator name="arrowhead width wide" code="0x02080003"/>
		</enumeration>
		<enumeration name="XlHAlign" code="e121">
			<enumerator name="horizontal align center" code="0x0208eff4"/>
			<enumerator name="horizontal align center across selection" code="0x02090007"/>
			<enumerator name="horizontal align distributed" code="0x0208efeb"/>
			<enumerator name="horizontal align fill" code="0x02090005"/>
			<enumerator name="horizontal align general" code="0x02090001"/>
			<enumerator name="horizontal align justify" code="0x0208efde"/>
			<enumerator name="horizontal align left" code="0x0208efdd"/>
			<enumerator name="horizontal align right" code="0x0208efc8"/>
		</enumeration>
		<enumeration name="XlTickLabelPosition" code="e122">
			<enumerator name="tick label position high" code="0x0209efe1"/>
			<enumerator name="tick label position low" code="0x0209efda"/>
			<enumerator name="tick label position next to axis" code="0x020a0004"/>
			<enumerator name="tick label position none" code="0x0209efd2"/>
		</enumeration>
		<enumeration name="XlLegendPosition" code="e123">
			<enumerator name="legend position bottom" code="0x020aeff5"/>
			<enumerator name="legend position corner" code="0x020b0002"/>
			<enumerator name="legend position left" code="0x020aefdd"/>
			<enumerator name="legend position right" code="0x020aefc8"/>
			<enumerator name="legend position top" code="0x020aefc0"/>
		</enumeration>
		<enumeration name="XlChartPictureType" code="e124">
			<enumerator name="chart picture type stack scale" code="0x020c0003"/>
			<enumerator name="chart picture type stack" code="0x020c0002"/>
			<enumerator name="chart picture type stretch" code="0x020c0001"/>
		</enumeration>
		<enumeration name="XlChartPicturePlacement" code="e125">
			<enumerator name="sides" code="0x020d0001"/>
			<enumerator name="end" code="0x020d0002"/>
			<enumerator name="end sides" code="0x020d0003"/>
			<enumerator name="front" code="0x020d0004"/>
			<enumerator name="front sides" code="0x020d0005"/>
			<enumerator name="front end" code="0x020d0006"/>
			<enumerator name="all faces" code="0x020d0007"/>
		</enumeration>
		<enumeration name="XlOrientation" code="e126">
			<enumerator name="orientation downward" code="0x020defb6"/>
			<enumerator name="orientation horizontal" code="0x020defe0"/>
			<enumerator name="orientation upward" code="0x020defb5"/>
			<enumerator name="orientation vertical" code="0x020defba"/>
		</enumeration>
		<enumeration name="XlTickLabelOrientation" code="e127">
			<enumerator name="tick label orientation automatic" code="0x020eeff7"/>
			<enumerator name="tick label orientation downward" code="0x020eefb6"/>
			<enumerator name="tick label orientation horizontal" code="0x020eefe0"/>
			<enumerator name="tick label orientation upward" code="0x020eefb5"/>
			<enumerator name="tick label orientation vertical" code="0x020eefba"/>
		</enumeration>
		<enumeration name="XlBorderWeight" code="e128">
			<enumerator name="border weight hairline" code="0x02100001"/>
			<enumerator name="border weight medium" code="0x020fefd6"/>
			<enumerator name="border weight thick" code="0x02100004"/>
			<enumerator name="border weight thin" code="0x02100002"/>
		</enumeration>
		<enumeration name="XlDataSeriesDate" code="e129">
			<enumerator name="series date day" code="0x02110001"/>
			<enumerator name="series date month" code="0x02110003"/>
			<enumerator name="series date weekday" code="0x02110002"/>
			<enumerator name="series date year" code="0x02110004"/>
		</enumeration>
		<enumeration name="XlUnderlineStyle" code="e130">
			<enumerator name="underline style double" code="0x0211efe9"/>
			<enumerator name="underline style double accounting" code="0x02120005"/>
			<enumerator name="underline style none" code="0x0211efd2"/>
			<enumerator name="underline style single" code="0x02120002"/>
			<enumerator name="underline style single accounting" code="0x02120004"/>
		</enumeration>
		<enumeration name="XlErrorBarType" code="e131">
			<enumerator name="error bar type custom" code="0x0212efee"/>
			<enumerator name="error bar type fixed value" code="0x02130001"/>
			<enumerator name="error bar type percent" code="0x02130002"/>
			<enumerator name="error bar type standard deviation" code="0x0212efc5"/>
			<enumerator name="error bar type standard error" code="0x02130004"/>
		</enumeration>
		<enumeration name="XlTrendlineType" code="e132">
			<enumerator name="exponential" code="0x02140005"/>
			<enumerator name="linear" code="0x0213efdc"/>
			<enumerator name="logarithmic" code="0x0213efdb"/>
			<enumerator name="moving average" code="0x02140006"/>
			<enumerator name="polynomial" code="0x02140003"/>
			<enumerator name="power" code="0x02140004"/>
		</enumeration>
		<enumeration name="XlLineStyle" code="e133">
			<enumerator name="continuous" code="0x02150001"/>
			<enumerator name="dash" code="0x0214efed"/>
			<enumerator name="dash dot" code="0x02150004"/>
			<enumerator name="dash dot dot" code="0x02150005"/>
			<enumerator name="dot" code="0x0214efea"/>
			<enumerator name="double" code="0x0214efe9"/>
			<enumerator name="slant dash dot" code="0x0215000d"/>
			<enumerator name="line style none" code="0x0214efd2"/>
		</enumeration>
		<enumeration name="XlDataLabelsType" code="e134">
			<enumerator name="data labels show none" code="0x0215efd2"/>
			<enumerator name="data labels show value" code="0x02160002"/>
			<enumerator name="data labels show percent" code="0x02160003"/>
			<enumerator name="data labels show label" code="0x02160004"/>
			<enumerator name="data labels show label and percent" code="0x02160005"/>
			<enumerator name="data labels show bubble sizes" code="0x02160006"/>
		</enumeration>
		<enumeration name="XlMarkerStyle" code="e135">
			<enumerator name="marker style automatic" code="0x0216eff7"/>
			<enumerator name="marker style circle" code="0x02170008"/>
			<enumerator name="marker style dash" code="0x0216efed"/>
			<enumerator name="marker style diamond" code="0x02170002"/>
			<enumerator name="marker style dot" code="0x0216efea"/>
			<enumerator name="marker style none" code="0x0216efd2"/>
			<enumerator name="marker style picture" code="0x0216efcd"/>
			<enumerator name="marker style plus" code="0x02170009"/>
			<enumerator name="marker style square" code="0x02170001"/>
			<enumerator name="marker style star" code="0x02170005"/>
			<enumerator name="marker style triangle" code="0x02170003"/>
			<enumerator name="marker style x" code="0x0216efb8"/>
		</enumeration>
		<enumeration name="XlPattern" code="e137">
			<enumerator name="pattern automatic" code="0x0218eff7"/>
			<enumerator name="pattern checker" code="0x02190009"/>
			<enumerator name="pattern criss cross" code="0x02190010"/>
			<enumerator name="pattern down" code="0x0218efe7"/>
			<enumerator name="pattern gray 16" code="0x02190011"/>
			<enumerator name="pattern gray 25" code="0x0218efe4"/>
			<enumerator name="pattern gray 50" code="0x0218efe3"/>
			<enumerator name="pattern gray 75" code="0x0218efe2"/>
			<enumerator name="pattern gray 8" code="0x02190012"/>
			<enumerator name="pattern grid" code="0x0219000f"/>
			<enumerator name="pattern horizontal" code="0x0218efe0"/>
			<enumerator name="pattern light down" code="0x0219000d"/>
			<enumerator name="pattern light horizontal" code="0x0219000b"/>
			<enumerator name="pattern light up" code="0x0219000e"/>
			<enumerator name="pattern light vertical" code="0x0219000c"/>
			<enumerator name="pattern none" code="0x0218efd2"/>
			<enumerator name="pattern semi gray 75" code="0x0219000a"/>
			<enumerator name="pattern solid" code="0x02190001"/>
			<enumerator name="pattern up" code="0x0218efbe"/>
			<enumerator name="pattern vertical" code="0x0218efba"/>
			<enumerator name="pattern linear gradient" code="0x02190fa0"/>
			<enumerator name="pattern rectangular gradient" code="0x02190fa1"/>
		</enumeration>
		<enumeration name="XlChartSplitType" code="e138">
			<enumerator name="split by position" code="0x021a0001"/>
			<enumerator name="split by percent value" code="0x021a0003"/>
			<enumerator name="split by custom split" code="0x021a0004"/>
			<enumerator name="split by value" code="0x021a0002"/>
		</enumeration>
		<enumeration name="XlDisplayUnit" code="e139">
			<enumerator name="hundreds" code="0x021afffe"/>
			<enumerator name="thousands" code="0x021afffd"/>
			<enumerator name="ten thousands" code="0x021afffc"/>
			<enumerator name="hundred thousands" code="0x021afffb"/>
			<enumerator name="millions" code="0x021afffa"/>
			<enumerator name="ten millions" code="0x021afff9"/>
			<enumerator name="hundred millions" code="0x021afff8"/>
			<enumerator name="thousand millions" code="0x021afff7"/>
			<enumerator name="million millions" code="0x021afff6"/>
			<enumerator name="custom display unit" code="0x021aefee"/>
		</enumeration>
		<enumeration name="XlDataLabelPosition" code="e140">
			<enumerator name="label position center" code="0x021beff4"/>
			<enumerator name="label position above" code="0x021c0000"/>
			<enumerator name="label position below" code="0x021c0001"/>
			<enumerator name="label position left" code="0x021befdd"/>
			<enumerator name="label position right" code="0x021befc8"/>
			<enumerator name="label position outside end" code="0x021c0002"/>
			<enumerator name="label position inside end" code="0x021c0003"/>
			<enumerator name="label position inside base" code="0x021c0004"/>
			<enumerator name="label position best fit" code="0x021c0005"/>
			<enumerator name="label position mixed" code="0x021c0006"/>
			<enumerator name="label position custom" code="0x021c0007"/>
		</enumeration>
		<enumeration name="XlTimeUnit" code="e141">
			<enumerator name="days" code="0x021d0000"/>
			<enumerator name="months" code="0x021d0001"/>
			<enumerator name="years" code="0x021d0002"/>
		</enumeration>
		<enumeration name="XlCategoryType" code="e142">
			<enumerator name="category scale" code="0x021e0002"/>
			<enumerator name="time scale" code="0x021e0003"/>
			<enumerator name="automatic scale" code="0x021deff7"/>
		</enumeration>
		<enumeration name="XlBarShape" code="e143">
			<enumerator name="box" code="0x021f0000"/>
			<enumerator name="pyramid to point" code="0x021f0001"/>
			<enumerator name="pyramid to max" code="0x021f0002"/>
			<enumerator name="cylinder" code="0x021f0003"/>
			<enumerator name="cone to point" code="0x021f0004"/>
			<enumerator name="cone to max" code="0x021f0005"/>
		</enumeration>
		<enumeration name="XlChartType" code="e144">
			<enumerator name="column clustered" code="0x02200033"/>
			<enumerator name="column stacked" code="0x02200034"/>
			<enumerator name="column stacked 100" code="0x02200035"/>
			<enumerator name="ThreeD column clustered" code="0x02200036"/>
			<enumerator name="ThreeD column stacked" code="0x02200037"/>
			<enumerator name="ThreeD column stacked 100" code="0x02200038"/>
			<enumerator name="bar clustered" code="0x02200039"/>
			<enumerator name="bar stacked" code="0x0220003a"/>
			<enumerator name="bar stacked 100" code="0x0220003b"/>
			<enumerator name="ThreeD bar clustered" code="0x0220003c"/>
			<enumerator name="ThreeD bar stacked" code="0x0220003d"/>
			<enumerator name="ThreeD bar stacked 100" code="0x0220003e"/>
			<enumerator name="line stacked" code="0x0220003f"/>
			<enumerator name="line stacked 100" code="0x02200040"/>
			<enumerator name="line markers" code="0x02200041"/>
			<enumerator name="line markers stacked" code="0x02200042"/>
			<enumerator name="line markers stacked 100" code="0x02200043"/>
			<enumerator name="pie of pie" code="0x02200044"/>
			<enumerator name="pie exploded" code="0x02200045"/>
			<enumerator name="ThreeD pie exploded" code="0x02200046"/>
			<enumerator name="bar of pie" code="0x02200047"/>
			<enumerator name="xy scatter smooth" code="0x02200048"/>
			<enumerator name="xy scatter smooth no markers" code="0x02200049"/>
			<enumerator name="xy scatter lines" code="0x0220004a"/>
			<enumerator name="xy scatter lines no markers" code="0x0220004b"/>
			<enumerator name="area stacked" code="0x0220004c"/>
			<enumerator name="area stacked 100" code="0x0220004d"/>
			<enumerator name="ThreeD area stacked" code="0x0220004e"/>
			<enumerator name="ThreeD area stacked 100" code="0x0220004f"/>
			<enumerator name="doughnut exploded" code="0x02200050"/>
			<enumerator name="radar markers" code="0x02200051"/>
			<enumerator name="radar filled" code="0x02200052"/>
			<enumerator name="surface" code="0x02200053"/>
			<enumerator name="surface wireframe" code="0x02200054"/>
			<enumerator name="surface top view" code="0x02200055"/>
			<enumerator name="surface top view wireframe" code="0x02200056"/>
			<enumerator name="bubble" code="0x0220000f"/>
			<enumerator name="bubble ThreeD effect" code="0x02200057"/>
			<enumerator name="stock HLC" code="0x02200058"/>
			<enumerator name="stock OHLC" code="0x02200059"/>
			<enumerator name="stock VHLC" code="0x0220005a"/>
			<enumerator name="stock VOHLC" code="0x0220005b"/>
			<enumerator name="cylinder column clustered" code="0x0220005c"/>
			<enumerator name="cylinder column stacked" code="0x0220005d"/>
			<enumerator name="cylinder column stacked 100" code="0x0220005e"/>
			<enumerator name="cylinder bar clustered" code="0x0220005f"/>
			<enumerator name="cylinder bar stacked" code="0x02200060"/>
			<enumerator name="cylinder bar stacked 100" code="0x02200061"/>
			<enumerator name="cylinder column" code="0x02200062"/>
			<enumerator name="cone column clustered" code="0x02200063"/>
			<enumerator name="cone column stacked" code="0x02200064"/>
			<enumerator name="cone column stacked 100" code="0x02200065"/>
			<enumerator name="cone bar clustered" code="0x02200066"/>
			<enumerator name="cone bar stacked" code="0x02200067"/>
			<enumerator name="cone bar stacked 100" code="0x02200068"/>
			<enumerator name="cone col" code="0x02200069"/>
			<enumerator name="pyramid column clustered" code="0x0220006a"/>
			<enumerator name="pyramid column stacked" code="0x0220006b"/>
			<enumerator name="pyramid column stacked 100" code="0x0220006c"/>
			<enumerator name="pyramid bar clustered" code="0x0220006d"/>
			<enumerator name="pyramid bar stacked" code="0x0220006e"/>
			<enumerator name="pyramid bar stacked 100" code="0x0220006f"/>
			<enumerator name="pyramid column" code="0x02200070"/>
			<enumerator name="ThreeD column" code="0x021feffc"/>
			<enumerator name="line chart" code="0x02200004"/>
			<enumerator name="ThreeD line" code="0x021feffb"/>
			<enumerator name="ThreeD pie" code="0x021feffa"/>
			<enumerator name="pie chart" code="0x02200005"/>
			<enumerator name="xyscatter" code="0x021fefb7"/>
			<enumerator name="ThreeD area" code="0x021feffe"/>
			<enumerator name="area chart" code="0x02200001"/>
			<enumerator name="doughnut" code="0x021fefe8"/>
			<enumerator name="radar" code="0x021fefc9"/>
			<enumerator name="combination chart" code="0x021feff1"/>
			<enumerator name="treemap" code="0x02200075"/>
			<enumerator name="histogram" code="0x02200076"/>
			<enumerator name="waterfall" code="0x02200077"/>
			<enumerator name="sunburst" code="0x02200078"/>
			<enumerator name="boxwhisker" code="0x02200079"/>
			<enumerator name="pareto" code="0x0220007a"/>
			<enumerator name="funnel" code="0x0220007b"/>
			<enumerator name="map chart" code="0x0220008c"/>
		</enumeration>
		<enumeration name="XlChartItem" code="e145">
			<enumerator name="data label" code="0x02210000"/>
			<enumerator name="a chart area" code="0x02210002"/>
			<enumerator name="a series" code="0x02210003"/>
			<enumerator name="a chart title" code="0x02210004"/>
			<enumerator name="walls" code="0x02210005"/>
			<enumerator name="a corners object" code="0x02210006"/>
			<enumerator name="data table" code="0x02210007"/>
			<enumerator name="trendline" code="0x02210008"/>
			<enumerator name="error bars object" code="0x02210009"/>
			<enumerator name="xerror bars" code="0x0221000a"/>
			<enumerator name="yerror bars" code="0x0221000b"/>
			<enumerator name="legend entry" code="0x0221000c"/>
			<enumerator name="legend key" code="0x0221000d"/>
			<enumerator name="shape" code="0x0221000e"/>
			<enumerator name="major gridlines" code="0x0221000f"/>
			<enumerator name="minor gridlines" code="0x02210010"/>
			<enumerator name="axis title" code="0x02210011"/>
			<enumerator name="up bars" code="0x02210012"/>
			<enumerator name="plot area" code="0x02210013"/>
			<enumerator name="down bars" code="0x02210014"/>
			<enumerator name="axis" code="0x02210015"/>
			<enumerator name="series lines" code="0x02210016"/>
			<enumerator name="floor" code="0x02210017"/>
			<enumerator name="legend" code="0x02210018"/>
			<enumerator name="hi lo lines" code="0x02210019"/>
			<enumerator name="drop lines" code="0x0221001a"/>
			<enumerator name="radar axis labels" code="0x0221001b"/>
			<enumerator name="nothing" code="0x0221001c"/>
			<enumerator name="leader lines" code="0x0221001d"/>
			<enumerator name="display unit label" code="0x0221001e"/>
		</enumeration>
		<enumeration name="XlSizeRepresents" code="e146">
			<enumerator name="size is width" code="0x02220002"/>
			<enumerator name="size is area" code="0x02220001"/>
		</enumeration>
		<enumeration name="XlInsertShiftDirection" code="e147">
			<enumerator name="shift down" code="0x0222efe7"/>
			<enumerator name="shift to right" code="0x0222efbf"/>
		</enumeration>
		<enumeration name="XlDeleteShiftDirection" code="e148">
			<enumerator name="shift to left" code="0x0223efc1"/>
			<enumerator name="shift up" code="0x0223efbe"/>
		</enumeration>
		<enumeration name="XlDirection" code="e149">
			<enumerator name="toward the bottom" code="0x0224efe7"/>
			<enumerator name="toward the left" code="0x0224efc1"/>
			<enumerator name="toward the right" code="0x0224efbf"/>
			<enumerator name="toward the top" code="0x0224efbe"/>
		</enumeration>
		<enumeration name="XlConsolidationFunction" code="e150">
			<enumerator name="do average" code="0x0225eff6"/>
			<enumerator name="do count" code="0x0225eff0"/>
			<enumerator name="do count numbers" code="0x0225efef"/>
			<enumerator name="do maximum" code="0x0225efd8"/>
			<enumerator name="do minimum" code="0x0225efd5"/>
			<enumerator name="do product" code="0x0225efcb"/>
			<enumerator name="do standard deviation" code="0x0225efc5"/>
			<enumerator name="do standard deviation p" code="0x0225efc4"/>
			<enumerator name="do sum" code="0x0225efc3"/>
			<enumerator name="do var" code="0x0225efbc"/>
			<enumerator name="do var p" code="0x0225efbb"/>
		</enumeration>
		<enumeration name="XlSheetType" code="e151">
			<enumerator name="sheet type chart" code="0x0226eff3"/>
			<enumerator name="sheet type dialog sheet" code="0x0226efec"/>
			<enumerator name="sheet type excel 4 intl macro sheet" code="0x02270004"/>
			<enumerator name="sheet type excel 4 macro sheet" code="0x02270003"/>
			<enumerator name="sheet type worksheet" code="0x0226efb9"/>
		</enumeration>
		<enumeration name="XlLocationInTable" code="e152">
			<enumerator name="column header" code="0x0227eff2"/>
			<enumerator name="column item" code="0x02280005"/>
			<enumerator name="data header" code="0x02280003"/>
			<enumerator name="data item" code="0x02280007"/>
			<enumerator name="page header" code="0x02280002"/>
			<enumerator name="page item" code="0x02280006"/>
			<enumerator name="row header" code="0x0227efc7"/>
			<enumerator name="row item" code="0x02280004"/>
			<enumerator name="table body" code="0x02280008"/>
		</enumeration>
		<enumeration name="XlFindLookIn" code="e153">
			<enumerator name="formulas" code="0x0228efe5"/>
			<enumerator name="comments" code="0x0228efd0"/>
			<enumerator name="values" code="0x0228efbd"/>
		</enumeration>
		<enumeration name="XlWindowType" code="e154">
			<enumerator name="window type chart as window" code="0x022a0005"/>
			<enumerator name="window type chart in place" code="0x022a0004"/>
			<enumerator name="window type clipboard" code="0x022a0003"/>
			<enumerator name="window type info" code="0x0229efdf"/>
			<enumerator name="window type workbook" code="0x022a0001"/>
		</enumeration>
		<enumeration name="XlPivotFieldDataType" code="e155">
			<enumerator name="pivot field type date" code="0x022b0002"/>
			<enumerator name="pivot field type number" code="0x022aefcf"/>
			<enumerator name="pivot field type text" code="0x022aefc2"/>
		</enumeration>
		<enumeration name="XlCopyPictureFormat" code="e156">
			<enumerator name="bitmap" code="0x022c0002"/>
			<enumerator name="picture" code="0x022befcd"/>
		</enumeration>
		<enumeration name="XlPivotTableSourceType" code="e157">
			<enumerator name="consolidation" code="0x022d0003"/>
			<enumerator name="database" code="0x022d0001"/>
			<enumerator name="external" code="0x022d0002"/>
			<enumerator name="pivot table" code="0x022cefcc"/>
		</enumeration>
		<enumeration name="XlReferenceStyle" code="e158">
			<enumerator name="A1" code="0x022e0001"/>
			<enumerator name="R1C1" code="0x022defca"/>
		</enumeration>
		<enumeration name="XlMSApplication" code="e159">
			<enumerator name="Microsoft Access" code="0x022f0004"/>
			<enumerator name="Microsoft Fox Pro" code="0x022f0005"/>
			<enumerator name="Microsoft Mail" code="0x022f0003"/>
			<enumerator name="Microsoft PowerPoint" code="0x022f0002"/>
			<enumerator name="Microsoft Project" code="0x022f0006"/>
			<enumerator name="Microsoft Schedule Plus" code="0x022f0007"/>
			<enumerator name="Microsoft Word" code="0x022f0001"/>
		</enumeration>
		<enumeration name="XlMouseButton" code="e160">
			<enumerator name="no button" code="0x02300000"/>
			<enumerator name="primary button" code="0x02300001"/>
			<enumerator name="secondary button" code="0x02300002"/>
		</enumeration>
		<enumeration name="XlCutCopyMode" code="e161">
			<enumerator name="copy mode" code="0x02310001"/>
			<enumerator name="cut mode" code="0x02310002"/>
		</enumeration>
		<enumeration name="XlFilterAction" code="e163">
			<enumerator name="filter copy" code="0x02330002"/>
			<enumerator name="filter in place" code="0x02330001"/>
		</enumeration>
		<enumeration name="XlFormulaVersion" code="e321">
			<enumerator name="using formula" code="0x02d70000"/>
			<enumerator name="using formula2" code="0x02d70001"/>
		</enumeration>
		<enumeration name="XlOrder" code="e164">
			<enumerator name="down then over" code="0x02340001"/>
			<enumerator name="over then down" code="0x02340002"/>
		</enumeration>
		<enumeration name="XlLinkType" code="e165">
			<enumerator name="link type Excel links" code="0x02350001"/>
			<enumerator name="link type OLE links" code="0x02350002"/>
		</enumeration>
		<enumeration name="XlApplyNamesOrder" code="e166">
			<enumerator name="column then row" code="0x02360002"/>
			<enumerator name="row then column" code="0x02360001"/>
		</enumeration>
		<enumeration name="XlEnableCancelKey" code="e167">
			<enumerator name="cancel key disabled" code="0x02370000"/>
			<enumerator name="error handler" code="0x02370002"/>
			<enumerator name="interrupt" code="0x02370001"/>
		</enumeration>
		<enumeration name="XlPageBreak" code="e168">
			<enumerator name="page break automatic" code="0x0237eff7"/>
			<enumerator name="page break manual" code="0x0237efd9"/>
			<enumerator name="page break none" code="0x02380000"/>
		</enumeration>
		<enumeration name="XlPageOrientation" code="e170">
			<enumerator name="landscape" code="0x023a0002"/>
			<enumerator name="portrait" code="0x023a0001"/>
		</enumeration>
		<enumeration name="XlLinkInfo" code="e171">
			<enumerator name="edition date" code="0x023b0002"/>
			<enumerator name="update state" code="0x023b0001"/>
		</enumeration>
		<enumeration name="XlCommandUnderlines" code="e172">
			<enumerator name="command underlines automatic" code="0x023beff7"/>
			<enumerator name="command underlines off" code="0x023befce"/>
			<enumerator name="command underlines on" code="0x023c0001"/>
		</enumeration>
		<enumeration name="XlOLEVerb" code="e173">
			<enumerator name="verb open" code="0x023d0002"/>
			<enumerator name="verb primary" code="0x023d0001"/>
		</enumeration>
		<enumeration name="XlCalculation" code="e174">
			<enumerator name="calculation automatic" code="0x023deff7"/>
			<enumerator name="calculation manual" code="0x023defd9"/>
			<enumerator name="calculation semiautomatic" code="0x023e0002"/>
		</enumeration>
		<enumeration name="XlFileAccess" code="e175">
			<enumerator name="workbook read only" code="0x023f0003"/>
			<enumerator name="workbook read write" code="0x023f0002"/>
		</enumeration>
		<enumeration name="XlObjectSize" code="e176">
			<enumerator name="fit to page" code="0x02400002"/>
			<enumerator name="full page" code="0x02400003"/>
			<enumerator name="full screen" code="0x02400001"/>
		</enumeration>
		<enumeration name="XlLookAt" code="e177">
			<enumerator name="part" code="0x02410002"/>
			<enumerator name="whole" code="0x02410001"/>
		</enumeration>
		<enumeration name="XlMailSystem" code="e178">
			<enumerator name="MAPI" code="0x02420001"/>
			<enumerator name="no mail system" code="0x02420000"/>
			<enumerator name="power talk" code="0x02420002"/>
		</enumeration>
		<enumeration name="XlLinkInfoType" code="e179">
			<enumerator name="link info olelinks" code="0x02430002"/>
			<enumerator name="link info publishers" code="0x02430005"/>
			<enumerator name="link info subscribers" code="0x02430006"/>
		</enumeration>
		<enumeration name="XlCellType" code="e182">
			<enumerator name="cell type blanks" code="0x02460004"/>
			<enumerator name="cell type constants" code="0x02460002"/>
			<enumerator name="cell type formulas" code="0x0245efe5"/>
			<enumerator name="cell type last cell" code="0x0246000b"/>
			<enumerator name="cell type comments" code="0x0245efd0"/>
			<enumerator name="cell type visible" code="0x0246000c"/>
			<enumerator name="cell type all format conditions" code="0x0245efb4"/>
			<enumerator name="cell type same format conditions" code="0x0245efb3"/>
			<enumerator name="cell type all validation" code="0x0245efb2"/>
			<enumerator name="cell type same validation" code="0x0245efb1"/>
		</enumeration>
		<enumeration name="XlArrangeStyle" code="e183">
			<enumerator name="arrange style cascade" code="0x02470007"/>
			<enumerator name="arrange style horizontal" code="0x0246efe0"/>
			<enumerator name="arrange style tiled" code="0x02470001"/>
			<enumerator name="arrange style vertical" code="0x0246efba"/>
		</enumeration>
		<enumeration name="XlMousePointer" code="e184">
			<enumerator name="I beam cursor" code="0x02480003"/>
			<enumerator name="default cursor" code="0x0247efd1"/>
			<enumerator name="northwest arrow cursor" code="0x02480001"/>
			<enumerator name="wait cursor" code="0x02480002"/>
		</enumeration>
		<enumeration name="XlAutoFillType" code="e185">
			<enumerator name="fill default" code="0x02490000"/>
			<enumerator name="fill copy" code="0x02490001"/>
			<enumerator name="fill series" code="0x02490002"/>
			<enumerator name="fill formats" code="0x02490003"/>
			<enumerator name="fill values" code="0x02490004"/>
			<enumerator name="fill days" code="0x02490005"/>
			<enumerator name="fill weekdays" code="0x02490006"/>
			<enumerator name="fill months" code="0x02490007"/>
			<enumerator name="fill years" code="0x02490008"/>
			<enumerator name="linear trend" code="0x02490009"/>
			<enumerator name="growth trend" code="0x0249000a"/>
			<enumerator name="flashfill" code="0x0249000b"/>
		</enumeration>
		<enumeration name="XlAutoFilterOperator" code="e186">
			<enumerator name="autofilter and" code="0x024a0001"/>
			<enumerator name="bottom 10 items" code="0x024a0004"/>
			<enumerator name="bottom 10 percent" code="0x024a0006"/>
			<enumerator name="autofilter or" code="0x024a0002"/>
			<enumerator name="top 10 items" code="0x024a0003"/>
			<enumerator name="top 10 percent" code="0x024a0005"/>
			<enumerator name="filter by value" code="0x024a0007"/>
			<enumerator name="filter by cell color" code="0x024a0008"/>
			<enumerator name="filter by font color" code="0x024a0009"/>
			<enumerator name="filter by icon" code="0x024a000a"/>
			<enumerator name="filter dynamic" code="0x024a000b"/>
			<enumerator name="filter no fill" code="0x024a000c"/>
			<enumerator name="filter by automatic font color" code="0x024a000d"/>
			<enumerator name="filter by no icon" code="0x024a000e"/>
		</enumeration>
		<enumeration name="XlClipboardFormat" code="e187">
			<enumerator name="clipboard format biff" code="0x024b0008"/>
			<enumerator name="clipboard format biff 2" code="0x024b0012"/>
			<enumerator name="clipboard format biff 3" code="0x024b0014"/>
			<enumerator name="clipboard format biff 4" code="0x024b001e"/>
			<enumerator name="clipboard format binary" code="0x024b000f"/>
			<enumerator name="clipboard format bitmap" code="0x024b0009"/>
			<enumerator name="clipboard format cgm" code="0x024b000d"/>
			<enumerator name="clipboard format csv" code="0x024b0005"/>
			<enumerator name="clipboard format dif" code="0x024b0004"/>
			<enumerator name="clipboard format dsp text" code="0x024b000c"/>
			<enumerator name="clipboard format embedded object" code="0x024b0015"/>
			<enumerator name="clipboard format embed source" code="0x024b0016"/>
			<enumerator name="clipboard format link" code="0x024b000b"/>
			<enumerator name="clipboard format link source" code="0x024b0017"/>
			<enumerator name="clipboard format link source desc" code="0x024b0020"/>
			<enumerator name="clipboard format movie" code="0x024b0018"/>
			<enumerator name="clipboard format native" code="0x024b000e"/>
			<enumerator name="clipboard format object desc" code="0x024b001f"/>
			<enumerator name="clipboard format object link" code="0x024b0013"/>
			<enumerator name="clipboard format owner link" code="0x024b0011"/>
			<enumerator name="clipboard format pict" code="0x024b0002"/>
			<enumerator name="clipboard format print pict" code="0x024b0003"/>
			<enumerator name="clipboard format rtf" code="0x024b0007"/>
			<enumerator name="clipboard format screen pict" code="0x024b001d"/>
			<enumerator name="clipboard format standard font" code="0x024b001c"/>
			<enumerator name="clipboard format standard scale" code="0x024b001b"/>
			<enumerator name="clipboard format sylk" code="0x024b0006"/>
			<enumerator name="clipboard format table" code="0x024b0010"/>
			<enumerator name="clipboard format text" code="0x024b0000"/>
			<enumerator name="clipboard format tool face" code="0x024b0019"/>
			<enumerator name="clipboard format tool face pict" code="0x024b001a"/>
			<enumerator name="clipboard format valu" code="0x024b0001"/>
			<enumerator name="clipboard format wk 1" code="0x024b000a"/>
			<enumerator name="clipboard format unicode text" code="0x024b002e"/>
			<enumerator name="clipboard format style text" code="0x024b0035"/>
			<enumerator name="clipboard format unicode style text" code="0x024b0037"/>
			<enumerator name="clipboard format biff 5" code="0x024b0021"/>
			<enumerator name="clipboard format picture build" code="0x024b0022"/>
			<enumerator name="clipboard format odbc conn" code="0x024b0023"/>
			<enumerator name="clipboard format odbc sql" code="0x024b0024"/>
			<enumerator name="clipboard format 3d picture" code="0x024b0025"/>
			<enumerator name="clipboard format unexpected 38" code="0x024b0026"/>
			<enumerator name="clipboard format drawing drag drop" code="0x024b0027"/>
			<enumerator name="clipboard format drawing" code="0x024b0028"/>
			<enumerator name="clipboard format unexpected 41" code="0x024b0029"/>
			<enumerator name="clipboard format unexpected 42" code="0x024b002a"/>
			<enumerator name="clipboard format unexpected 43" code="0x024b002b"/>
			<enumerator name="clipboard format hyperlink" code="0x024b002c"/>
			<enumerator name="clipboard format unexpected 45" code="0x024b002d"/>
			<enumerator name="clipboard format windows bitmap" code="0x024b002f"/>
			<enumerator name="clipboard format uniform resource locator" code="0x024b0030"/>
			<enumerator name="clipboard format file name" code="0x024b0031"/>
			<enumerator name="clipboard format unexpected 50" code="0x024b0032"/>
			<enumerator name="clipboard format unexpected 51" code="0x024b0033"/>
			<enumerator name="clipboard format hypertext markup language" code="0x024b0034"/>
			<enumerator name="clipboard format office scrapbook info" code="0x024b0036"/>
			<enumerator name="clipboard format portable document format" code="0x024b0038"/>
			<enumerator name="clipboard format excel internal shape" code="0x024b0039"/>
			<enumerator name="clipboard format office art shape" code="0x024b003a"/>
		</enumeration>
		<enumeration name="XlFileFormat" code="e188">
			<enumerator name="CSV file format" code="0x02bc0006"/>
			<enumerator name="CSV Mac file format" code="0x02bc0016"/>
			<enumerator name="CSV MSDos file format" code="0x02bc0018"/>
			<enumerator name="CSV Windows file format" code="0x02bc0017"/>
			<enumerator name="DBF3 file format" code="0x02bc0008"/>
			<enumerator name="DBF4 file format" code="0x02bc000b"/>
			<enumerator name="DIF file format" code="0x02bc0009"/>
			<enumerator name="Excel2 file format" code="0x02bc0010"/>
			<enumerator name="Excel 2 east asian file format" code="0x02bc001b"/>
			<enumerator name="Excel3 file format" code="0x02bc001d"/>
			<enumerator name="Excel4 file format" code="0x02bc0021"/>
			<enumerator name="Excel5 file format" code="0x02bc0027"/>
			<enumerator name="Excel7 file format" code="0x02bc0027"/>
			<enumerator name="Excel 4 workbook file format" code="0x02bc0023"/>
			<enumerator name="international add in file format" code="0x02bc001a"/>
			<enumerator name="international macro file format" code="0x02bc0019"/>
			<enumerator name="workbook normal file format" code="0x02bc0033"/>
			<enumerator name="SYLK file format" code="0x02bc0002"/>
			<enumerator name="current platform text file format" code="0x02bbefc2"/>
			<enumerator name="text Mac file format" code="0x02bc0013"/>
			<enumerator name="text MSDos file format" code="0x02bc0015"/>
			<enumerator name="text printer file format" code="0x02bc0024"/>
			<enumerator name="text windows file format" code="0x02bc0014"/>
			<enumerator name="HTML file format" code="0x02bc002d"/>
			<enumerator name="XML spreadsheet file format" code="0x02bc002e"/>
			<enumerator name="PDF file format" code="0x02bc0039"/>
			<enumerator name="Excel binary file format" code="0x02bc0032"/>
			<enumerator name="Excel XML file format" code="0x02bc0033"/>
			<enumerator name="macro enabled XML file format" code="0x02bc0034"/>
			<enumerator name="macro enabled template file format" code="0x02bc0035"/>
			<enumerator name="template file format" code="0x02bc0036"/>
			<enumerator name="add in file format" code="0x02bc0037"/>
			<enumerator name="Excel98to2004 file format" code="0x02bc0038"/>
			<enumerator name="Excel98to2004 template file format" code="0x02bc0011"/>
			<enumerator name="Excel98to2004 add in file format" code="0x02bc0012"/>
		</enumeration>
		<enumeration name="XlApplicationInternational" code="e189">
			<enumerator name="twenty_four_hour clock" code="0x024d0021"/>
			<enumerator name="four digit years" code="0x024d002b"/>
			<enumerator name="alternate array separator" code="0x024d0010"/>
			<enumerator name="column separator" code="0x024d000e"/>
			<enumerator name="country_code" code="0x024d0001"/>
			<enumerator name="country_setting" code="0x024d0002"/>
			<enumerator name="currency_before" code="0x024d0025"/>
			<enumerator name="currency_code" code="0x024d0019"/>
			<enumerator name="currency_digits" code="0x024d001b"/>
			<enumerator name="currency_leading_zeros" code="0x024d0028"/>
			<enumerator name="currency_minus_sign" code="0x024d0026"/>
			<enumerator name="currency_negative" code="0x024d001c"/>
			<enumerator name="currency_space_before" code="0x024d0024"/>
			<enumerator name="currency_trailing_zeros" code="0x024d0027"/>
			<enumerator name="date_order" code="0x024d0020"/>
			<enumerator name="date_separator" code="0x024d0011"/>
			<enumerator name="day code" code="0x024d0015"/>
			<enumerator name="day leading zero" code="0x024d002a"/>
			<enumerator name="decimal separator" code="0x024d0003"/>
			<enumerator name="general format name" code="0x024d001a"/>
			<enumerator name="hour code" code="0x024d0016"/>
			<enumerator name="left brace" code="0x024d000c"/>
			<enumerator name="left bracket" code="0x024d000a"/>
			<enumerator name="list separator" code="0x024d0005"/>
			<enumerator name="lower case column letter" code="0x024d0009"/>
			<enumerator name="lower case row letter" code="0x024d0008"/>
			<enumerator name="mdy" code="0x024d002c"/>
			<enumerator name="metric" code="0x024d0023"/>
			<enumerator name="minute_code" code="0x024d0017"/>
			<enumerator name="month_code" code="0x024d0014"/>
			<enumerator name="month_leading_zero" code="0x024d0029"/>
			<enumerator name="month_name_chars" code="0x024d001e"/>
			<enumerator name="noncurrency_digits" code="0x024d001d"/>
			<enumerator name="non english functions" code="0x024d0022"/>
			<enumerator name="right brace" code="0x024d000d"/>
			<enumerator name="right bracket" code="0x024d000b"/>
			<enumerator name="row separator" code="0x024d000f"/>
			<enumerator name="second code" code="0x024d0018"/>
			<enumerator name="thousands separator" code="0x024d0004"/>
			<enumerator name="time leading zero" code="0x024d002d"/>
			<enumerator name="time separator" code="0x024d0012"/>
			<enumerator name="upper case column letter" code="0x024d0007"/>
			<enumerator name="upper case row letter" code="0x024d0006"/>
			<enumerator name="weekday_name_chars" code="0x024d001f"/>
			<enumerator name="year code" code="0x024d0013"/>
		</enumeration>
		<enumeration name="XlPageBreakExtent" code="e190">
			<enumerator name="page break full" code="0x024e0001"/>
			<enumerator name="page break partial" code="0x024e0002"/>
		</enumeration>
		<enumeration name="XlCellInsertionMode" code="e191">
			<enumerator name="overwrite cells" code="0x024f0000"/>
			<enumerator name="insert delete cells" code="0x024f0001"/>
			<enumerator name="insert entire rows" code="0x024f0002"/>
		</enumeration>
		<enumeration name="XlFormulaLabel" code="e192">
			<enumerator name="no labels" code="0x024fefd2"/>
			<enumerator name="row labels" code="0x02500001"/>
			<enumerator name="column labels" code="0x02500002"/>
			<enumerator name="mixed labels" code="0x02500003"/>
		</enumeration>
		<enumeration name="XlHighlightChangesTime" code="e193">
			<enumerator name="since my last save" code="0x02510001"/>
			<enumerator name="all changes" code="0x02510002"/>
			<enumerator name="not yet reviewed" code="0x02510003"/>
		</enumeration>
		<enumeration name="XlCommentDisplayMode" code="e194">
			<enumerator name="no indicator" code="0x02520000"/>
			<enumerator name="comment indicator only" code="0x0251ffff"/>
			<enumerator name="comment and indicator" code="0x02520001"/>
		</enumeration>
		<enumeration name="XlFormatConditionType" code="e195">
			<enumerator name="cell value" code="0x02530001"/>
			<enumerator name="expression" code="0x02530002"/>
			<enumerator name="color scale" code="0x02530003"/>
			<enumerator name="databar" code="0x02530004"/>
			<enumerator name="top 10" code="0x02530005"/>
			<enumerator name="icon sets" code="0x02530006"/>
			<enumerator name="unique values" code="0x02530007"/>
			<enumerator name="text string" code="0x02530009"/>
			<enumerator name="blanks condition" code="0x0253000a"/>
			<enumerator name="time period" code="0x0253000b"/>
			<enumerator name="above average condition" code="0x0253000c"/>
			<enumerator name="no blanks condition" code="0x0253000d"/>
			<enumerator name="errors condition" code="0x02530010"/>
			<enumerator name="no errors condition" code="0x02530011"/>
		</enumeration>
		<enumeration name="XlFormatConditionOperator" code="e196">
			<enumerator name="operator between" code="0x02540001"/>
			<enumerator name="operator not between" code="0x02540002"/>
			<enumerator name="operator equal" code="0x02540003"/>
			<enumerator name="operator not equal" code="0x02540004"/>
			<enumerator name="operator greater" code="0x02540005"/>
			<enumerator name="operator less" code="0x02540006"/>
			<enumerator name="operator greater equal" code="0x02540007"/>
			<enumerator name="operator less equal" code="0x02540008"/>
		</enumeration>
		<enumeration name="XlEnableSelection" code="e197">
			<enumerator name="no restrictions" code="0x02550000"/>
			<enumerator name="unlocked cells" code="0x02550001"/>
			<enumerator name="no selection" code="0x0254efd2"/>
		</enumeration>
		<enumeration name="XlDVType" code="e198">
			<enumerator name="validate input only" code="0x02560000"/>
			<enumerator name="validate whole number" code="0x02560001"/>
			<enumerator name="validate decimal" code="0x02560002"/>
			<enumerator name="validate list" code="0x02560003"/>
			<enumerator name="validated date" code="0x02560004"/>
			<enumerator name="validate time" code="0x02560005"/>
			<enumerator name="validate text length" code="0x02560006"/>
			<enumerator name="validate custom" code="0x02560007"/>
		</enumeration>
		<enumeration name="XlIMEMode" code="e199">
			<enumerator name="IME mode no control" code="0x02570000"/>
			<enumerator name="IME mode on" code="0x02570001"/>
			<enumerator name="IME mode off" code="0x02570002"/>
			<enumerator name="IME mode disable" code="0x02570003"/>
			<enumerator name="IME mode hiragana" code="0x02570004"/>
			<enumerator name="IME mode katakana" code="0x02570005"/>
			<enumerator name="IME mode katakana half" code="0x02570006"/>
			<enumerator name="IME mode alpha full" code="0x02570007"/>
			<enumerator name="IME mode alpha" code="0x02570008"/>
			<enumerator name="IME mode hangul full" code="0x02570009"/>
			<enumerator name="IME mode hangul" code="0x0257000a"/>
		</enumeration>
		<enumeration name="XlDVAlertStyle" code="e200">
			<enumerator name="valid alert none" code="0x0257ffff"/>
			<enumerator name="valid alert stop" code="0x02580001"/>
			<enumerator name="valid alert warning" code="0x02580002"/>
			<enumerator name="valid alert information" code="0x02580003"/>
		</enumeration>
		<enumeration name="XlChartLocation" code="e201">
			<enumerator name="location as new sheet" code="0x02590001"/>
			<enumerator name="location as object" code="0x02590002"/>
			<enumerator name="location automatic" code="0x02590003"/>
		</enumeration>
		<enumeration name="XlChartElementPosition" code="e216">
			<enumerator name="automatic" code="0x0259eff7"/>
			<enumerator name="custom" code="0x0259efee"/>
		</enumeration>
		<enumeration name="XlPivotTableVersionList" code="e900">
			<enumerator name="pivot table version 2000" code="0x03840000"/>
			<enumerator name="pivot table version 10" code="0x03840001"/>
			<enumerator name="pivot table version 11" code="0x03840002"/>
			<enumerator name="pivot table version 12" code="0x03840003"/>
			<enumerator name="pivot table version 14" code="0x03840004"/>
			<enumerator name="pivot table version current" code="0x0383ffff"/>
		</enumeration>
		<enumeration name="XlLayoutRowType" code="e901">
			<enumerator name="compact row" code="0x03850000"/>
			<enumerator name="tabular row" code="0x03850001"/>
			<enumerator name="outline row" code="0x03850002"/>
		</enumeration>
		<enumeration name="XlSubtototalLocationType" code="e902">
			<enumerator name="at top" code="0x03860001"/>
			<enumerator name="at bottom" code="0x03860002"/>
		</enumeration>
		<enumeration name="XlAllocation" code="e903">
			<enumerator name="manual allocation" code="0x03870001"/>
			<enumerator name="automatic allocation" code="0x03870002"/>
		</enumeration>
		<enumeration name="XlAllocationValue" code="e904">
			<enumerator name="allocate value" code="0x03880001"/>
			<enumerator name="allocate increment" code="0x03880002"/>
		</enumeration>
		<enumeration name="XlAllocationMethod" code="e905">
			<enumerator name="equal allocation" code="0x03890001"/>
			<enumerator name="weight allocation" code="0x03890002"/>
		</enumeration>
		<enumeration name="XlPivotFieldRepeatLabels" code="e906">
			<enumerator name="do not repeat labels" code="0x038a0001"/>
			<enumerator name="repeat labels" code="0x038a0002"/>
		</enumeration>
		<enumeration name="XlPivotTableMissingItems" code="e907">
			<enumerator name="missing items default" code="0x038affff"/>
			<enumerator name="missing items none" code="0x038b0000"/>
			<enumerator name="missing items max" code="0x038b7ef4"/>
			<enumerator name="missing items max2" code="0x039b0000"/>
		</enumeration>
		<enumeration name="XlPivotCellType" code="e908">
			<enumerator name="pivot cell value" code="0x038c0000"/>
			<enumerator name="pivot cell pivot item" code="0x038c0001"/>
			<enumerator name="pivot cell subtotal" code="0x038c0002"/>
			<enumerator name="pivot cell grand total" code="0x038c0003"/>
			<enumerator name="pivot cell data field" code="0x038c0004"/>
			<enumerator name="pivot cell pivot field" code="0x038c0005"/>
			<enumerator name="pivot cell page field item" code="0x038c0006"/>
			<enumerator name="pivot cell custom subtotal" code="0x038c0007"/>
			<enumerator name="pivot cell data pivot field" code="0x038c0008"/>
			<enumerator name="pivot cell blank cell" code="0x038c0009"/>
		</enumeration>
		<enumeration name="XlCellChangedState" code="e909">
			<enumerator name="cell not changed" code="0x038d0001"/>
			<enumerator name="cell changed" code="0x038d0002"/>
			<enumerator name="cell change applied" code="0x038d0003"/>
		</enumeration>
		<enumeration name="XlLayoutFormType" code="e910">
			<enumerator name="tabular" code="0x038e0000"/>
			<enumerator name="outline" code="0x038e0001"/>
		</enumeration>
		<enumeration name="XlPivotFilterType" code="e911">
			<enumerator name="pivot top count" code="0x038f0001"/>
			<enumerator name="pivot bottom count" code="0x038f0002"/>
			<enumerator name="pivot top percent" code="0x038f0003"/>
			<enumerator name="pivot bottom percent" code="0x038f0004"/>
			<enumerator name="pivot top sum" code="0x038f0005"/>
			<enumerator name="pivot bottom sum" code="0x038f0006"/>
			<enumerator name="pivot value equals" code="0x038f0007"/>
			<enumerator name="pivot value is not equal" code="0x038f0008"/>
			<enumerator name="pivot value is greater than" code="0x038f0009"/>
			<enumerator name="pivot value is greater than or equal to" code="0x038f000a"/>
			<enumerator name="pivot value is less than" code="0x038f000b"/>
			<enumerator name="pivot value is less than or equal to" code="0x038f000c"/>
			<enumerator name="pivot value is between" code="0x038f000d"/>
			<enumerator name="pivot value is not between" code="0x038f000e"/>
			<enumerator name="pivot caption equals" code="0x038f000f"/>
			<enumerator name="pivot caption does not equal" code="0x038f0010"/>
			<enumerator name="pivot caption begins with" code="0x038f0011"/>
			<enumerator name="pivot caption does not begin with" code="0x038f0012"/>
			<enumerator name="pivot caption ends with" code="0x038f0013"/>
			<enumerator name="pivot caption does not end with" code="0x038f0014"/>
			<enumerator name="pivot caption contains" code="0x038f0015"/>
			<enumerator name="pivot caption does not contain" code="0x038f0016"/>
			<enumerator name="pivot caption is greater than" code="0x038f0017"/>
			<enumerator name="pivot caption is greater than or equal to" code="0x038f0018"/>
			<enumerator name="pivot caption is less than" code="0x038f0019"/>
			<enumerator name="pivot caption is less than or equal to" code="0x038f001a"/>
			<enumerator name="pivot caption is between" code="0x038f001b"/>
			<enumerator name="pivot caption is now between" code="0x038f001c"/>
			<enumerator name="pivot specific date" code="0x038f001d"/>
			<enumerator name="pivot not specific date" code="0x038f001e"/>
			<enumerator name="pivot before" code="0x038f001f"/>
			<enumerator name="pivot before or equal to" code="0x038f0020"/>
			<enumerator name="pivot after" code="0x038f0021"/>
			<enumerator name="pivot after or equal to" code="0x038f0022"/>
			<enumerator name="pivot between" code="0x038f0023"/>
			<enumerator name="pivot not between" code="0x038f0024"/>
			<enumerator name="pivot tomorrow" code="0x038f0025"/>
			<enumerator name="pivot today" code="0x038f0026"/>
			<enumerator name="pivot yesterday" code="0x038f0027"/>
			<enumerator name="pivot next week" code="0x038f0028"/>
			<enumerator name="pivot this week" code="0x038f0029"/>
			<enumerator name="pivot last week" code="0x038f002a"/>
			<enumerator name="pivot next month" code="0x038f002b"/>
			<enumerator name="pivot this month" code="0x038f002c"/>
			<enumerator name="pivot last month" code="0x038f002d"/>
			<enumerator name="pivot next quarter" code="0x038f002e"/>
			<enumerator name="pivot this quarter" code="0x038f002f"/>
			<enumerator name="pivot last quarter" code="0x038f0030"/>
			<enumerator name="pivot next year" code="0x038f0031"/>
			<enumerator name="pivot this year" code="0x038f0032"/>
			<enumerator name="pivot last year" code="0x038f0033"/>
			<enumerator name="pivot year to date" code="0x038f0034"/>
			<enumerator name="pivot all dates in period quarter1" code="0x038f0035"/>
			<enumerator name="pivot all dates in period quarter2" code="0x038f0036"/>
			<enumerator name="pivot all dates in period quarter3" code="0x038f0037"/>
			<enumerator name="pivot all dates in period quarter4" code="0x038f0038"/>
			<enumerator name="pivot all dates in period January" code="0x038f0039"/>
			<enumerator name="pivot all dates in period Feberary" code="0x038f003a"/>
			<enumerator name="pivot all dates in period March" code="0x038f003b"/>
			<enumerator name="pivot all dates in period April" code="0x038f003c"/>
			<enumerator name="pivot all dates in period May" code="0x038f003d"/>
			<enumerator name="pivot all dates in period June" code="0x038f003e"/>
			<enumerator name="pivot all dates in period July" code="0x038f003f"/>
			<enumerator name="pivot all dates in period August" code="0x038f0040"/>
			<enumerator name="pivot all dates in period September" code="0x038f0041"/>
			<enumerator name="pivot all dates in period October" code="0x038f0042"/>
			<enumerator name="pivot all dates in period November" code="0x038f0043"/>
			<enumerator name="pivot all dates in period December" code="0x038f0044"/>
		</enumeration>
		<enumeration name="XlPivotLineType" code="e912">
			<enumerator name="pivot line regular" code="0x03900000"/>
			<enumerator name="pivot line subtotal" code="0x03900001"/>
			<enumerator name="pivot line grandtotal" code="0x03900002"/>
			<enumerator name="pivot line blank" code="0x03900003"/>
		</enumeration>
		<enumeration name="XlCubeFieldType" code="e913">
			<enumerator name="hierarchy" code="0x03910001"/>
			<enumerator name="measure" code="0x03910002"/>
			<enumerator name="set" code="0x03910003"/>
		</enumeration>
		<enumeration name="XlCubeFieldSubType" code="e914">
			<enumerator name="cube hierarchy" code="0x03920001"/>
			<enumerator name="cube measure" code="0x03920002"/>
			<enumerator name="cube set" code="0x03920003"/>
			<enumerator name="cube attribute" code="0x03920004"/>
			<enumerator name="cube calculated measure" code="0x03920005"/>
			<enumerator name="cube KPI value" code="0x03920006"/>
			<enumerator name="cube KPI goal" code="0x03920007"/>
			<enumerator name="cube KPI status" code="0x03920008"/>
			<enumerator name="cube KPI trend" code="0x03920009"/>
			<enumerator name="cube KPI weight" code="0x0392000a"/>
		</enumeration>
		<enumeration name="XlPropertyDisplayedIn" code="e915">
			<enumerator name="display property in pivot table" code="0x03930001"/>
			<enumerator name="display property in tooltip" code="0x03930002"/>
			<enumerator name="display property in pivot table and tooltip" code="0x03930003"/>
		</enumeration>
		<enumeration name="XlCalculatedMemberType" code="e916">
			<enumerator name="calculated member" code="0x03940000"/>
			<enumerator name="calculated set" code="0x03940001"/>
		</enumeration>
		<enumeration name="XlConnectionType" code="e917">
			<enumerator name="connection type OLEDB" code="0x03950001"/>
			<enumerator name="connection type ODBC" code="0x03950002"/>
			<enumerator name="connection type XMLMAP" code="0x03950003"/>
			<enumerator name="connection type TEXT" code="0x03950004"/>
			<enumerator name="connection type WEB" code="0x03950005"/>
		</enumeration>
		<enumeration name="XlPasteSpecialOperation" code="e203">
			<enumerator name="paste special operation add" code="0x025b0002"/>
			<enumerator name="paste special operation divide" code="0x025b0005"/>
			<enumerator name="paste special operation multiply" code="0x025b0004"/>
			<enumerator name="paste special operation none" code="0x025aefd2"/>
			<enumerator name="paste special operation subtract" code="0x025b0003"/>
		</enumeration>
		<enumeration name="XlPasteType" code="e204">
			<enumerator name="paste all" code="0x025beff8"/>
			<enumerator name="paste all using source theme" code="0x025c000d"/>
			<enumerator name="paste all except borders" code="0x025c0007"/>
			<enumerator name="paste formats" code="0x025befe6"/>
			<enumerator name="paste formulas" code="0x025befe5"/>
			<enumerator name="paste comments" code="0x025befd0"/>
			<enumerator name="paste values" code="0x025befbd"/>
			<enumerator name="paste column widths" code="0x025c0008"/>
			<enumerator name="paste validation" code="0x025c0006"/>
			<enumerator name="paste formulas and number formats" code="0x025c000b"/>
			<enumerator name="paste values and number formats" code="0x025c000c"/>
		</enumeration>
		<enumeration name="XlPhoneticCharacterType" code="e205">
			<enumerator name="phonetic character half width katakana" code="0x025d0000"/>
			<enumerator name="phonetic character full width katakana" code="0x025d0001"/>
			<enumerator name="phonetic character hiragana" code="0x025d0002"/>
			<enumerator name="no phonetic character conversion" code="0x025d0003"/>
		</enumeration>
		<enumeration name="XlPhoneticAlignment" code="e206">
			<enumerator name="phonetic align no control" code="0x025e0000"/>
			<enumerator name="phonetic align left" code="0x025e0001"/>
			<enumerator name="phonetic align center" code="0x025e0002"/>
			<enumerator name="phonetic align distributed" code="0x025e0003"/>
		</enumeration>
		<enumeration name="XlPictureAppearance" code="e207">
			<enumerator name="printer" code="0x025f0002"/>
			<enumerator name="screen" code="0x025f0001"/>
		</enumeration>
		<enumeration name="XlPivotFieldOrientation" code="e208">
			<enumerator name="orient as column field" code="0x02600002"/>
			<enumerator name="orient as data field" code="0x02600004"/>
			<enumerator name="orient as hidden" code="0x02600000"/>
			<enumerator name="orient as page field" code="0x02600003"/>
			<enumerator name="orient as row field" code="0x02600001"/>
		</enumeration>
		<enumeration name="XlPivotFieldCalculation" code="e209">
			<enumerator name="pivot field calculation difference from" code="0x02610002"/>
			<enumerator name="pivot field calculation index" code="0x02610009"/>
			<enumerator name="pivot field calculation no additional calculation" code="0x0260efd1"/>
			<enumerator name="pivot field calculation percent difference from" code="0x02610004"/>
			<enumerator name="pivot field calculation percent of" code="0x02610003"/>
			<enumerator name="pivot field calculation percent of column" code="0x02610007"/>
			<enumerator name="pivot field calculation percent of row" code="0x02610006"/>
			<enumerator name="pivot field calculation percent of total" code="0x02610008"/>
			<enumerator name="pivot field calculation running total" code="0x02610005"/>
		</enumeration>
		<enumeration name="XlPlacement" code="e210">
			<enumerator name="placement free floating" code="0x02620003"/>
			<enumerator name="placement move" code="0x02620002"/>
			<enumerator name="placement move and size" code="0x02620001"/>
		</enumeration>
		<enumeration name="XlPlatform" code="e211">
			<enumerator name="Macintosh" code="0x02630001"/>
			<enumerator name="MSDos" code="0x02630003"/>
			<enumerator name="MSWindows" code="0x02630002"/>
		</enumeration>
		<enumeration name="XlPrintLocation" code="e212">
			<enumerator name="print sheet end" code="0x02640001"/>
			<enumerator name="print in place" code="0x02640010"/>
			<enumerator name="print no comments" code="0x0263efd2"/>
		</enumeration>
		<enumeration name="XlPriority" code="e213">
			<enumerator name="priority high" code="0x0264efe1"/>
			<enumerator name="priority low" code="0x0264efda"/>
			<enumerator name="priority normal" code="0x0264efd1"/>
		</enumeration>
		<enumeration name="XlPTSelectionMode" code="e214">
			<enumerator name="selection mode label only" code="0x02660001"/>
			<enumerator name="selection mode data and label" code="0x02660000"/>
			<enumerator name="selection mode data only" code="0x02660002"/>
			<enumerator name="selection mode origin" code="0x02660003"/>
			<enumerator name="selection mode button" code="0x0266000f"/>
			<enumerator name="selection mode blanks" code="0x02660004"/>
		</enumeration>
		<enumeration name="XlRangeAutoFormat" code="e215">
			<enumerator name="range autoformat threeD effects 1" code="0x0267000d"/>
			<enumerator name="range autoformat threeD effects 2" code="0x0267000e"/>
			<enumerator name="range autoformat accounting 1" code="0x02670004"/>
			<enumerator name="range autoformat accounting 2" code="0x02670005"/>
			<enumerator name="range autoformat accounting 3" code="0x02670006"/>
			<enumerator name="range autoformat accounting 4" code="0x02670011"/>
			<enumerator name="range autoformat classic 1" code="0x02670001"/>
			<enumerator name="range autoformat classic 2" code="0x02670002"/>
			<enumerator name="range autoformat classic 3" code="0x02670003"/>
			<enumerator name="range autoformat color 1" code="0x02670007"/>
			<enumerator name="range autoformat color 2" code="0x02670008"/>
			<enumerator name="range autoformat color 3" code="0x02670009"/>
			<enumerator name="range autoformat list 1" code="0x0267000a"/>
			<enumerator name="range autoformat list 2" code="0x0267000b"/>
			<enumerator name="range autoformat list 3" code="0x0267000c"/>
			<enumerator name="range autoformat local format 1" code="0x0267000f"/>
			<enumerator name="range autoformat local format 2" code="0x02670010"/>
			<enumerator name="range autoformat local format 3" code="0x02670013"/>
			<enumerator name="range autoformat local format 4" code="0x02670014"/>
			<enumerator name="range autoformat none" code="0x0266efd2"/>
			<enumerator name="range autoformat simple" code="0x0266efc6"/>
		</enumeration>
		<enumeration name="XlRoutingSlipDelivery" code="e217">
			<enumerator name="all at once" code="0x02690002"/>
			<enumerator name="one after another" code="0x02690001"/>
		</enumeration>
		<enumeration name="XlRoutingSlipStatus" code="e218">
			<enumerator name="not yet routed" code="0x026a0000"/>
			<enumerator name="routing complete" code="0x026a0002"/>
			<enumerator name="routing in progress" code="0x026a0001"/>
		</enumeration>
		<enumeration name="XlRunAutoMacro" code="e219">
			<enumerator name="auto activate" code="0x026b0003"/>
			<enumerator name="auto close" code="0x026b0002"/>
			<enumerator name="auto deactivate" code="0x026b0004"/>
			<enumerator name="auto open" code="0x026b0001"/>
		</enumeration>
		<enumeration name="XlSaveAsAccessMode" code="e221">
			<enumerator name="exclusive" code="0x026d0003"/>
			<enumerator name="no change" code="0x026d0001"/>
			<enumerator name="shared" code="0x026d0002"/>
		</enumeration>
		<enumeration name="XlSaveConflictResolution" code="e222">
			<enumerator name="local session changes" code="0x026e0002"/>
			<enumerator name="other session changes" code="0x026e0003"/>
			<enumerator name="user resolution" code="0x026e0001"/>
		</enumeration>
		<enumeration name="XlSearchDirection" code="e223">
			<enumerator name="search next" code="0x026f0001"/>
			<enumerator name="search previous" code="0x026f0002"/>
		</enumeration>
		<enumeration name="XlSearchOrder" code="e224">
			<enumerator name="by columns" code="0x02700002"/>
			<enumerator name="by rows" code="0x02700001"/>
		</enumeration>
		<enumeration name="XlSheetVisibility" code="e225">
			<enumerator name="sheet visible" code="0x0270ffff"/>
			<enumerator name="sheet hidden" code="0x02710000"/>
			<enumerator name="sheet very hidden" code="0x02710002"/>
		</enumeration>
		<enumeration name="XlSortMethod" code="e226">
			<enumerator name="pin yin" code="0x02720001" description="Phonetic Chinese/Japanese sort order for characters. This is the default value."/>
			<enumerator name="stroke" code="0x02720002" description="Sort by the quantity of strokes in each character."/>
		</enumeration>
		<enumeration name="XlSortOrder" code="e228">
			<enumerator name="sort ascending" code="0x02740001" description="Sorts the specified field in ascending order. This is the default value."/>
			<enumerator name="sort descending" code="0x02740002" description="Sorts the specified field in descending order."/>
			<enumerator name="sort manual" code="0x0273efd9" description="It is not supported."/>
		</enumeration>
		<enumeration name="XlSortOrientation" code="e229">
			<enumerator name="sort rows" code="0x02750002" description="Sorts by row. this is the default value."/>
			<enumerator name="sort columns" code="0x02750001" description="Sorts by column."/>
		</enumeration>
		<enumeration name="XlSortType" code="e230">
			<enumerator name="sort labels" code="0x02760002" description="Sorts the PivotTable report by labels."/>
			<enumerator name="sort values" code="0x02760001" description="Sorts the PivotTable report by values."/>
		</enumeration>
		<enumeration name="XlSpecialCellsValue" code="e231">
			<enumerator name="errors" code="0x02770010"/>
			<enumerator name="logical" code="0x02770004"/>
			<enumerator name="numbers" code="0x02770001"/>
			<enumerator name="text values" code="0x02770002"/>
		</enumeration>
		<enumeration name="XlSummaryRow" code="e232">
			<enumerator name="summary above" code="0x02780000"/>
			<enumerator name="summary below" code="0x02780001"/>
		</enumeration>
		<enumeration name="XlSummaryColumn" code="e233">
			<enumerator name="summary on left" code="0x0278efdd"/>
			<enumerator name="summary on right" code="0x0278efc8"/>
		</enumeration>
		<enumeration name="XlSummaryReportType" code="e234">
			<enumerator name="summary pivot table" code="0x0279efcc"/>
			<enumerator name="standard summary" code="0x027a0001"/>
		</enumeration>
		<enumeration name="XlTextParsingType" code="e236">
			<enumerator name="delimited" code="0x027c0001"/>
			<enumerator name="fixed width" code="0x027c0002"/>
		</enumeration>
		<enumeration name="XlTextQualifier" code="e237">
			<enumerator name="text qualifier double quote" code="0x027d0001"/>
			<enumerator name="text qualifier none" code="0x027cefd2"/>
			<enumerator name="text qualifier single quote" code="0x027d0002"/>
		</enumeration>
		<enumeration name="XlWBATemplate" code="e238">
			<enumerator name="chart" code="0x027deff3"/>
			<enumerator name="Excel 4 intl macro sheet" code="0x027e0004"/>
			<enumerator name="Excel 4 macro sheet" code="0x027e0003"/>
			<enumerator name="worksheet" code="0x027defb9"/>
		</enumeration>
		<enumeration name="XlWindowView" code="e239">
			<enumerator name="normal view" code="0x027f0001"/>
			<enumerator name="page layout view" code="0x027f0003"/>
		</enumeration>
		<enumeration name="XlXLMMacroType" code="e240">
			<enumerator name="macro type command" code="0x02800002"/>
			<enumerator name="macro type function" code="0x02800001"/>
			<enumerator name="macro type not XLM" code="0x02800003"/>
		</enumeration>
		<enumeration name="XlYesNoGuess" code="e241">
			<enumerator name="header guess" code="0x02810000" description="Default value. Excel determines whether there is a header, and where it is, if there is one."/>
			<enumerator name="header no" code="0x02810002" description="The entire range should be sorted."/>
			<enumerator name="header yes" code="0x02810001" description="The entire range should not be sorted."/>
		</enumeration>
		<enumeration name="XlDisplayDrawingObjects" code="e242">
			<enumerator name="display shapes" code="0x0281eff8"/>
			<enumerator name="hide" code="0x02820003"/>
			<enumerator name="placeholders" code="0x02820002"/>
		</enumeration>
		<enumeration name="XlBordersIndex" code="e243">
			<enumerator name="inside horizontal" code="0x0283000c"/>
			<enumerator name="inside vertical" code="0x0283000b"/>
			<enumerator name="diagonal down" code="0x02830005"/>
			<enumerator name="diagonal up" code="0x02830006"/>
			<enumerator name="edge bottom" code="0x02830009"/>
			<enumerator name="edge left" code="0x02830007"/>
			<enumerator name="edge right" code="0x0283000a"/>
			<enumerator name="edge top" code="0x02830008"/>
			<enumerator name="border bottom" code="0x0282eff5"/>
			<enumerator name="border left" code="0x0282efdd"/>
			<enumerator name="border right" code="0x0282efc8"/>
			<enumerator name="border top" code="0x0282efc0"/>
		</enumeration>
		<enumeration name="XlToolbarProtection" code="e244">
			<enumerator name="no button changes" code="0x02840001"/>
			<enumerator name="no changes" code="0x02840004"/>
			<enumerator name="no docking changes" code="0x02840003"/>
			<enumerator name="toolbar protection none" code="0x0283efd1"/>
			<enumerator name="no shape changes" code="0x02840002"/>
		</enumeration>
		<enumeration name="XlBuiltInDialog" code="e245">
			<enumerator name="dialog open" code="0x02850001"/>
			<enumerator name="dialog open links" code="0x02850002"/>
			<enumerator name="dialog save as" code="0x02850005"/>
			<enumerator name="dialog file delete" code="0x02850006"/>
			<enumerator name="dialog page setup" code="0x02850007"/>
			<enumerator name="dialog print" code="0x02850008"/>
			<enumerator name="dialog printer setup" code="0x02850009"/>
			<enumerator name="dialog arrange all" code="0x0285000c"/>
			<enumerator name="dialog window size" code="0x0285000d"/>
			<enumerator name="dialog window move" code="0x0285000e"/>
			<enumerator name="dialog run" code="0x02850011"/>
			<enumerator name="dialog set print titles" code="0x02850017"/>
			<enumerator name="dialog font" code="0x0285001a"/>
			<enumerator name="dialog display" code="0x0285001b"/>
			<enumerator name="dialog protect document" code="0x0285001c"/>
			<enumerator name="dialog calculation" code="0x02850020"/>
			<enumerator name="dialog extract" code="0x02850023"/>
			<enumerator name="dialog data delete" code="0x02850024"/>
			<enumerator name="dialog sort" code="0x02850027"/>
			<enumerator name="dialog data series" code="0x02850028"/>
			<enumerator name="dialog table" code="0x02850029"/>
			<enumerator name="dialog format number" code="0x0285002a"/>
			<enumerator name="dialog alignment" code="0x0285002b"/>
			<enumerator name="dialog style" code="0x0285002c"/>
			<enumerator name="dialog border" code="0x0285002d"/>
			<enumerator name="dialog cell protection" code="0x0285002e"/>
			<enumerator name="dialog column width" code="0x0285002f"/>
			<enumerator name="dialog clear" code="0x02850034"/>
			<enumerator name="dialog paste special" code="0x02850035"/>
			<enumerator name="dialog edit delete" code="0x02850036"/>
			<enumerator name="dialog insert" code="0x02850037"/>
			<enumerator name="dialog paste names" code="0x0285003a"/>
			<enumerator name="dialog define name" code="0x0285003d"/>
			<enumerator name="dialog create names" code="0x0285003e"/>
			<enumerator name="dialog formula goto" code="0x0285003f"/>
			<enumerator name="dialog formula find" code="0x02850040"/>
			<enumerator name="dialog gallery area" code="0x02850043"/>
			<enumerator name="dialog gallery bar" code="0x02850044"/>
			<enumerator name="dialog gallery column" code="0x02850045"/>
			<enumerator name="dialog gallery line" code="0x02850046"/>
			<enumerator name="dialog gallery pie" code="0x02850047"/>
			<enumerator name="dialog gallery scatter" code="0x02850048"/>
			<enumerator name="dialog combination" code="0x02850049"/>
			<enumerator name="dialog gridlines" code="0x0285004c"/>
			<enumerator name="dialog axes" code="0x0285004e"/>
			<enumerator name="dialog attach text" code="0x02850050"/>
			<enumerator name="dialog patterns" code="0x02850054"/>
			<enumerator name="dialog main chart" code="0x02850055"/>
			<enumerator name="dialog overlay" code="0x02850056"/>
			<enumerator name="dialog scale" code="0x02850057"/>
			<enumerator name="dialog format legend" code="0x02850058"/>
			<enumerator name="dialog format text" code="0x02850059"/>
			<enumerator name="dialog parse" code="0x0285005b"/>
			<enumerator name="dialog unhide" code="0x0285005e"/>
			<enumerator name="dialog workspace" code="0x0285005f"/>
			<enumerator name="dialog activate" code="0x02850067"/>
			<enumerator name="dialog copy picture" code="0x0285006c"/>
			<enumerator name="dialog delete name" code="0x0285006e"/>
			<enumerator name="dialog delete format" code="0x0285006f"/>
			<enumerator name="dialog new" code="0x02850077"/>
			<enumerator name="dialog row height" code="0x0285007f"/>
			<enumerator name="dialog format move" code="0x02850080"/>
			<enumerator name="dialog format size" code="0x02850081"/>
			<enumerator name="dialog formula replace" code="0x02850082"/>
			<enumerator name="dialog select special" code="0x02850084"/>
			<enumerator name="dialog apply names" code="0x02850085"/>
			<enumerator name="dialog replace font" code="0x02850086"/>
			<enumerator name="dialog split" code="0x02850089"/>
			<enumerator name="dialog outline" code="0x0285008e"/>
			<enumerator name="dialog save workbook" code="0x02850091"/>
			<enumerator name="dialog copy chart" code="0x02850093"/>
			<enumerator name="dialog format font" code="0x02850096"/>
			<enumerator name="dialog note" code="0x0285009a"/>
			<enumerator name="dialog set update status" code="0x0285009f"/>
			<enumerator name="dialog color palette" code="0x028500a1"/>
			<enumerator name="dialog change link" code="0x028500a6"/>
			<enumerator name="dialog app move" code="0x028500aa"/>
			<enumerator name="dialog app size" code="0x028500ab"/>
			<enumerator name="dialog main chart type" code="0x028500b9"/>
			<enumerator name="dialog overlay chart type" code="0x028500ba"/>
			<enumerator name="dialog open mail" code="0x028500bc"/>
			<enumerator name="dialog send mail" code="0x028500bd"/>
			<enumerator name="dialog standard font" code="0x028500be"/>
			<enumerator name="dialog consolidate" code="0x028500bf"/>
			<enumerator name="dialog sort special" code="0x028500c0"/>
			<enumerator name="dialog gallery threeD area" code="0x028500c1"/>
			<enumerator name="dialog gallery threeD column" code="0x028500c2"/>
			<enumerator name="dialog gallery threeD line" code="0x028500c3"/>
			<enumerator name="dialog gallery threeD pie" code="0x028500c4"/>
			<enumerator name="dialog view threeD" code="0x028500c5"/>
			<enumerator name="dialog goal seek" code="0x028500c6"/>
			<enumerator name="dialog workgroup" code="0x028500c7"/>
			<enumerator name="dialog fill group" code="0x028500c8"/>
			<enumerator name="dialog update link" code="0x028500c9"/>
			<enumerator name="dialog promote" code="0x028500ca"/>
			<enumerator name="dialog demote" code="0x028500cb"/>
			<enumerator name="dialog show detail" code="0x028500cc"/>
			<enumerator name="dialog object properties" code="0x028500cf"/>
			<enumerator name="dialog save new object" code="0x028500d0"/>
			<enumerator name="dialog apply style" code="0x028500d4"/>
			<enumerator name="dialog assign to object" code="0x028500d5"/>
			<enumerator name="dialog object protection" code="0x028500d6"/>
			<enumerator name="dialog show toolbar" code="0x028500dc"/>
			<enumerator name="dialog print preview" code="0x028500de"/>
			<enumerator name="dialog edit color" code="0x028500df"/>
			<enumerator name="dialog format main" code="0x028500e1"/>
			<enumerator name="dialog format overlay" code="0x028500e2"/>
			<enumerator name="dialog edit series" code="0x028500e4"/>
			<enumerator name="dialog define style" code="0x028500e5"/>
			<enumerator name="dialog gallery radar" code="0x028500f9"/>
			<enumerator name="dialog zoom" code="0x02850100"/>
			<enumerator name="dialog insert object" code="0x02850103"/>
			<enumerator name="dialog size" code="0x02850105"/>
			<enumerator name="dialog move" code="0x02850106"/>
			<enumerator name="dialog format auto" code="0x0285010d"/>
			<enumerator name="dialog gallery threeD bar" code="0x02850110"/>
			<enumerator name="dialog gallery threeD surface" code="0x02850111"/>
			<enumerator name="dialog customize toolbar" code="0x02850114"/>
			<enumerator name="dialog workbook add" code="0x02850119"/>
			<enumerator name="dialog workbook move" code="0x0285011a"/>
			<enumerator name="dialog workbook copy" code="0x0285011b"/>
			<enumerator name="dialog workbook options" code="0x0285011c"/>
			<enumerator name="dialog save workspace" code="0x0285011d"/>
			<enumerator name="dialog chart wizard" code="0x02850120"/>
			<enumerator name="dialog assign to tool" code="0x02850125"/>
			<enumerator name="dialog placement" code="0x0285012c"/>
			<enumerator name="dialog fill workgroup" code="0x0285012d"/>
			<enumerator name="dialog workbook new" code="0x0285012e"/>
			<enumerator name="dialog scenario cells" code="0x02850131"/>
			<enumerator name="dialog scenario add" code="0x02850133"/>
			<enumerator name="dialog scenario edit" code="0x02850134"/>
			<enumerator name="dialog scenario summary" code="0x02850137"/>
			<enumerator name="dialog pivot table wizard" code="0x02850138"/>
			<enumerator name="dialog pivot field properties" code="0x02850139"/>
			<enumerator name="dialog options calculation" code="0x0285013e"/>
			<enumerator name="dialog options edit" code="0x0285013f"/>
			<enumerator name="dialog options view" code="0x02850140"/>
			<enumerator name="dialog add in manager" code="0x02850141"/>
			<enumerator name="dialog menu editor" code="0x02850142"/>
			<enumerator name="dialog attach toolbars" code="0x02850143"/>
			<enumerator name="dialog options chart" code="0x02850145"/>
			<enumerator name="dialog vba insert file" code="0x02850148"/>
			<enumerator name="dialog vba procedure definition" code="0x0285014a"/>
			<enumerator name="dialog routing slip" code="0x02850150"/>
			<enumerator name="dialog mail logon" code="0x02850153"/>
			<enumerator name="dialog insert picture" code="0x02850156"/>
			<enumerator name="dialog gallery doughnut" code="0x02850158"/>
			<enumerator name="dialog chart trend" code="0x0285015e"/>
			<enumerator name="dialog workbook insert" code="0x02850162"/>
			<enumerator name="dialog options transition" code="0x02850163"/>
			<enumerator name="dialog options general" code="0x02850164"/>
			<enumerator name="dialog filter advanced" code="0x02850172"/>
			<enumerator name="dialog mail next letter" code="0x0285017a"/>
			<enumerator name="dialog data label" code="0x0285017b"/>
			<enumerator name="dialog insert title" code="0x0285017c"/>
			<enumerator name="dialog font properties" code="0x0285017d"/>
			<enumerator name="dialog macro options" code="0x0285017e"/>
			<enumerator name="dialog workbook unhide" code="0x02850180"/>
			<enumerator name="dialog workbook name" code="0x02850182"/>
			<enumerator name="dialog gallery custom" code="0x02850184"/>
			<enumerator name="dialog add chart autoformat" code="0x02850186"/>
			<enumerator name="dialog chart add data" code="0x02850188"/>
			<enumerator name="dialog tab order" code="0x0285018a"/>
			<enumerator name="dialog subtotal create" code="0x0285018e"/>
			<enumerator name="dialog workbook tab split" code="0x0285019f"/>
			<enumerator name="dialog workbook protect" code="0x028501a1"/>
			<enumerator name="dialog scrollbar properties" code="0x028501a4"/>
			<enumerator name="dialog pivot show pages" code="0x028501a5"/>
			<enumerator name="dialog text to columns" code="0x028501a6"/>
			<enumerator name="dialog format charttype" code="0x028501a7"/>
			<enumerator name="dialog pivot field group" code="0x028501b1"/>
			<enumerator name="dialog pivot field ungroup" code="0x028501b2"/>
			<enumerator name="dialog checkbox properties" code="0x028501b3"/>
			<enumerator name="dialog label properties" code="0x028501b4"/>
			<enumerator name="dialog listbox properties" code="0x028501b5"/>
			<enumerator name="dialog editbox properties" code="0x028501b6"/>
			<enumerator name="dialog open text" code="0x028501b9"/>
			<enumerator name="dialog pushbutton properties" code="0x028501bd"/>
			<enumerator name="dialog filter" code="0x028501bf"/>
			<enumerator name="dialog function wizard" code="0x028501c2"/>
			<enumerator name="dialog save copy as" code="0x028501c8"/>
			<enumerator name="dialog options lists add" code="0x028501ca"/>
			<enumerator name="dialog series axes" code="0x028501cc"/>
			<enumerator name="dialog series x" code="0x028501cd"/>
			<enumerator name="dialog series y" code="0x028501ce"/>
			<enumerator name="dialog errorbar x" code="0x028501cf"/>
			<enumerator name="dialog errorbar y" code="0x028501d0"/>
			<enumerator name="dialog format chart" code="0x028501d1"/>
			<enumerator name="dialog series order" code="0x028501d2"/>
			<enumerator name="dialog mail edit mailer" code="0x028501d6"/>
			<enumerator name="dialog standard width" code="0x028501d8"/>
			<enumerator name="dialog scenario merge" code="0x028501d9"/>
			<enumerator name="dialog properties" code="0x028501da"/>
			<enumerator name="dialog summary info" code="0x028501da"/>
			<enumerator name="dialog find file" code="0x028501db"/>
			<enumerator name="dialog active cell font" code="0x028501dc"/>
			<enumerator name="dialog vba make add in" code="0x028501de"/>
			<enumerator name="dialog file sharing" code="0x028501e1"/>
			<enumerator name="dialog autocorrect" code="0x028501e5"/>
			<enumerator name="dialog custom views" code="0x028501ed"/>
			<enumerator name="dialog insert name label" code="0x028501f0"/>
			<enumerator name="dialog series shape" code="0x028501f8"/>
			<enumerator name="dialog chart options data labels" code="0x028501f9"/>
			<enumerator name="dialog chart options data table" code="0x028501fa"/>
			<enumerator name="dialog set background picture" code="0x028501fd"/>
			<enumerator name="dialog data validation" code="0x0285020d"/>
			<enumerator name="dialog chart type" code="0x0285020e"/>
			<enumerator name="dialog chart location" code="0x0285020f"/>
			<enumerator name="dialog chart source data" code="0x0285021d"/>
			<enumerator name="dialog series options" code="0x0285022d"/>
			<enumerator name="dialog pivot table options" code="0x02850237"/>
			<enumerator name="dialog pivot solve order" code="0x02850238"/>
			<enumerator name="dialog pivot calculated field" code="0x0285023a"/>
			<enumerator name="dialog pivot calculated item" code="0x0285023c"/>
			<enumerator name="dialog conditional formatting" code="0x02850247"/>
			<enumerator name="dialog insert hyperlink" code="0x02850254"/>
			<enumerator name="dialog protect sharing" code="0x0285026c"/>
			<enumerator name="dialog phonetic" code="0x0285028b"/>
			<enumerator name="dialog import text file" code="0x0285029a"/>
			<enumerator name="dialog web options general" code="0x028502b4"/>
			<enumerator name="dialog web options pictures" code="0x028502b6"/>
			<enumerator name="dialog web options files" code="0x028502b5"/>
			<enumerator name="dialog web options fonts" code="0x028502b8"/>
			<enumerator name="dialog web options encoding" code="0x028502b7"/>
		</enumeration>
		<enumeration name="XlParameterType" code="e246">
			<enumerator name="prompt" code="0x02860000"/>
			<enumerator name="constant" code="0x02860001"/>
			<enumerator name="range" code="0x02860002"/>
		</enumeration>
		<enumeration name="XlParameterDataType" code="e247">
			<enumerator name="param type unknown" code="0x02870000"/>
			<enumerator name="param type char" code="0x02870001"/>
			<enumerator name="param type numeric" code="0x02870002"/>
			<enumerator name="param type decimal" code="0x02870003"/>
			<enumerator name="param type number" code="0x02870004"/>
			<enumerator name="param type small int" code="0x02870005"/>
			<enumerator name="param type float" code="0x02870006"/>
			<enumerator name="param type real" code="0x02870007"/>
			<enumerator name="param type double" code="0x02870008"/>
			<enumerator name="param type var char" code="0x0287000c"/>
			<enumerator name="param type date" code="0x02870009"/>
			<enumerator name="param type time" code="0x0287000a"/>
			<enumerator name="param type timestamp" code="0x0287000b"/>
			<enumerator name="param type long var char" code="0x0286ffff"/>
			<enumerator name="param type binary" code="0x0286fffe"/>
			<enumerator name="param type var binary" code="0x0286fffd"/>
			<enumerator name="param type long var binary" code="0x0286fffc"/>
			<enumerator name="param type big int" code="0x0286fffb"/>
			<enumerator name="param type tiny int" code="0x0286fffa"/>
			<enumerator name="param type bit" code="0x0286fff9"/>
		</enumeration>
		<enumeration name="XlFormControl" code="e248">
			<enumerator name="button control" code="0x02880000"/>
			<enumerator name="check box" code="0x02880001"/>
			<enumerator name="drop down" code="0x02880002"/>
			<enumerator name="edit box" code="0x02880003"/>
			<enumerator name="group box" code="0x02880004"/>
			<enumerator name="label" code="0x02880005"/>
			<enumerator name="list box" code="0x02880006"/>
			<enumerator name="option button" code="0x02880007"/>
			<enumerator name="scroll bar" code="0x02880008"/>
			<enumerator name="spinner" code="0x02880009"/>
		</enumeration>
		<enumeration name="XlColumnDataType" code="e249">
			<enumerator name="general format" code="0x02890001"/>
			<enumerator name="text format" code="0x02890002"/>
			<enumerator name="MDY format" code="0x02890003"/>
			<enumerator name="DMY format" code="0x02890004"/>
			<enumerator name="YMD format" code="0x02890005"/>
			<enumerator name="MYD format" code="0x02890006"/>
			<enumerator name="DYM format" code="0x02890007"/>
			<enumerator name="YDM format" code="0x02890008"/>
			<enumerator name="skip column" code="0x02890009"/>
		</enumeration>
		<enumeration name="XlQueryType" code="e250">
			<enumerator name="ODBC query" code="0x028a0001"/>
			<enumerator name="DAO record set" code="0x028a0002"/>
			<enumerator name="web query" code="0x028a0004"/>
			<enumerator name="OLE DB query" code="0x028a0005"/>
			<enumerator name="text import" code="0x028a0006"/>
			<enumerator name="ADO recordset" code="0x028a0007"/>
			<enumerator name="FileMaker query" code="0x028a0008"/>
		</enumeration>
		<enumeration name="XlCmdType" code="e251">
			<enumerator name="cmd cube" code="0x028b0001"/>
			<enumerator name="cmd sql" code="0x028b0002"/>
			<enumerator name="cmd table" code="0x028b0003"/>
			<enumerator name="cmd default" code="0x028b0004"/>
			<enumerator name="cmd list" code="0x028b0005"/>
		</enumeration>
		<enumeration name="XlListObjectSourceType" code="e253">
			<enumerator name="src external" code="0x028d0000"/>
			<enumerator name="src range" code="0x028d0001"/>
			<enumerator name="src xml" code="0x028d0002"/>
			<enumerator name="src query" code="0x028d0003"/>
			<enumerator name="src model" code="0x028d0004"/>
		</enumeration>
		<enumeration name="XlFMCriteriaOperator" code="e257">
			<enumerator name="criteria equals" code="0x02910000"/>
			<enumerator name="criteria less than or equal to" code="0x02910001"/>
			<enumerator name="criteria greater than or equal to" code="0x02910002"/>
			<enumerator name="criteria less than" code="0x02910003"/>
			<enumerator name="criteria greater than" code="0x02910004"/>
			<enumerator name="criteria begins with" code="0x02910005"/>
			<enumerator name="criteria ends with" code="0x02910006"/>
			<enumerator name="criteria contains" code="0x02910007"/>
		</enumeration>
		<enumeration name="xlFMCriteriaConditional" code="e258">
			<enumerator name="no condition" code="0x02920000"/>
			<enumerator name="and condition" code="0x02920001"/>
			<enumerator name="or condition" code="0x02920002"/>
		</enumeration>
		<enumeration name="XlRangeValueDataType" code="e259">
			<enumerator name="range value default" code="0x0293000a"/>
			<enumerator name="range value XML spreadsheet" code="0x0293000b"/>
			<enumerator name="range value MS persist XML" code="0x0293000c"/>
		</enumeration>
		<enumeration name="XLSubTotalsIndex" code="e261">
			<enumerator name="subtotal automatic" code="0x02950001"/>
			<enumerator name="subtotal sum" code="0x02950002"/>
			<enumerator name="subtotal count" code="0x02950003"/>
			<enumerator name="subtotal average" code="0x02950004"/>
			<enumerator name="subtotal max" code="0x02950005"/>
			<enumerator name="subtotal min" code="0x02950006"/>
			<enumerator name="subtotal product" code="0x02950007"/>
			<enumerator name="subtotal count numbers" code="0x02950008"/>
			<enumerator name="subtotal standard deviation" code="0x02950009"/>
			<enumerator name="subtotal standard deviation p" code="0x0295000a"/>
			<enumerator name="subtotal variable" code="0x0295000b"/>
			<enumerator name="subtotal variable p" code="0x0295000c"/>
		</enumeration>
		<enumeration name="XLDataEntryMode" code="e262">
			<enumerator name="data entry on" code="0x02960001"/>
			<enumerator name="data entry strict" code="0x02960002"/>
			<enumerator name="data entry off" code="0x0295efce"/>
		</enumeration>
		<enumeration name="XLStatusBarState" code="e263">
			<enumerator name="status text" code="0x0296ffff"/>
			<enumerator name="a Boolean" code="0x02970000"/>
		</enumeration>
		<enumeration name="XLTransitionMenuKeyAction" code="e264">
			<enumerator name="excel menus" code="0x02980001"/>
		</enumeration>
		<enumeration name="XLDefaultSheetDir" code="e265">
			<enumerator name="left to right" code="0x0298ec75"/>
			<enumerator name="right to left" code="0x0298ec74"/>
			<enumerator name="context" code="0x0298ec76"/>
		</enumeration>
		<enumeration name="XLCusorMovement" code="e266">
			<enumerator name="normal cursor" code="0x029a0000"/>
			<enumerator name="logical cursor" code="0x029a0001"/>
			<enumerator name="visual cursor" code="0x029a0002"/>
		</enumeration>
		<enumeration name="XLRangeReference" code="e267">
			<enumerator name="range object" code="0x029b0001" description="range object"/>
			<enumerator name="A1-style range reference" code="0x029b0002" description="range R1C1 reference"/>
			<enumerator name="named range" code="0x029b0003" description="range R1C1 reference"/>
		</enumeration>
		<enumeration name="XLSubTotalType" code="e268">
			<enumerator name="automatic subtotal" code="0x029c0001"/>
			<enumerator name="sum subtotal" code="0x029c0002"/>
			<enumerator name="count subtotal" code="0x029c0003"/>
			<enumerator name="average subtotal" code="0x029c0004"/>
			<enumerator name="maximum value" code="0x029c0005"/>
			<enumerator name="minimum value" code="0x029c0006"/>
			<enumerator name="product subtotal" code="0x029c0007"/>
			<enumerator name="count numbers subtotal" code="0x029c0008"/>
			<enumerator name="standard deviation" code="0x029c0009"/>
			<enumerator name="standard deviation P" code="0x029c000a"/>
			<enumerator name="variance subtotal" code="0x029c000b"/>
			<enumerator name="variance P subtotal" code="0x029c000c"/>
		</enumeration>
		<enumeration name="XLAutoShowType" code="e269">
			<enumerator name="type_automatic" code="0x029ceff7"/>
			<enumerator name="type_manual" code="0x029cefd9"/>
		</enumeration>
		<enumeration name="XLAutoShowPosition" code="e270">
			<enumerator name="position top" code="0x029defc0"/>
			<enumerator name="position bottom" code="0x029deff5"/>
		</enumeration>
		<enumeration name="XLScrollTabPosition" code="e271">
			<enumerator name="scroll tab position first" code="0x029f0000"/>
			<enumerator name="scroll tab position last" code="0x029f0001"/>
		</enumeration>
		<enumeration name="XLPivotTableWizardSourceData" code="e272">
			<enumerator name="range" code="0x02a00000"/>
			<enumerator name="a list of ranges" code="0x02a00001"/>
			<enumerator name="report name" code="0x02a00002"/>
			<enumerator name="a list of string that is a SQL query" code="0x02a00003"/>
		</enumeration>
		<enumeration name="XLDefaultChartTemplate" code="e273">
			<enumerator name="built in chart template" code="0x02a10001"/>
			<enumerator name="format name" code="0x02a10002"/>
		</enumeration>
		<enumeration name="XLDefaultChartType" code="e274">
			<enumerator name="built in chart type" code="0x02a20015"/>
			<enumerator name="custom chart" code="0x02a1efee"/>
		</enumeration>
		<enumeration name="XLCustomListType" code="e275">
			<enumerator name="range object" code="0x02a30001" description="range object"/>
			<enumerator name="A1-style range reference" code="0x02a30002" description="range R1C1 reference"/>
			<enumerator name="named range" code="0x02a30003" description="range R1C1 reference"/>
			<enumerator name="list of strings" code="0x02a30004"/>
		</enumeration>
		<enumeration name="XLInputDefault" code="e276">
			<enumerator name="range object" code="0x02a40001" description="range object"/>
			<enumerator name="A1-style range reference" code="0x02a40002" description="range R1C1 reference"/>
			<enumerator name="named range" code="0x02a40003" description="range R1C1 reference"/>
			<enumerator name="input default as string" code="0x02a40004"/>
		</enumeration>
		<enumeration name="XLInputType" code="e277">
			<enumerator name="a number" code="0x02a50001" description="range object"/>
			<enumerator name="input type as string" code="0x02a50002" description="range R1C1 reference"/>
			<enumerator name="a number or a string" code="0x02a50003" description="range R1C1 reference"/>
			<enumerator name="a bool" code="0x02a50004"/>
			<enumerator name="range object" code="0x02a50008"/>
			<enumerator name="list of numbers" code="0x02a50041"/>
			<enumerator name="list of strings" code="0x02a50042"/>
			<enumerator name="list of number or string" code="0x02a50043"/>
			<enumerator name="list of bools" code="0x02a50044"/>
			<enumerator name="list of range objects" code="0x02a50048"/>
		</enumeration>
		<enumeration name="XLZoomType" code="e278">
			<enumerator name="a number" code="0x02a60001"/>
			<enumerator name="a bool" code="0x02a60004"/>
		</enumeration>
		<enumeration name="XLSourceDataLocation" code="e279">
			<enumerator name="range object" code="0x02a70001" description="range object"/>
			<enumerator name="A1-style range reference" code="0x02a70002" description="range R1C1 reference"/>
			<enumerator name="named range" code="0x02a70003" description="range R1C1 reference"/>
			<enumerator name="list of strings" code="0x02a70004" description="A list of SQL query strings"/>
		</enumeration>
		<enumeration name="XLSourceData" code="e280">
			<enumerator name="percentable" code="0x02a80001" description="A percentage between 10 and 400"/>
			<enumerator name="a bool" code="0x02a80004"/>
		</enumeration>
		<enumeration name="XLOnDataType" code="e281">
			<enumerator name="script" code="0x02a90001" description="A script object"/>
			<enumerator name="script Text" code="0x02a90002"/>
		</enumeration>
		<enumeration name="XlRangeTarget" code="e282">
			<enumerator name="application" code="0x02aa0001"/>
			<enumerator name="worksheet" code="0x02aa0002"/>
			<enumerator name="A1-style range reference" code="0x02aa0003"/>
		</enumeration>
		<enumeration name="XlHorizAlignmentTarget" code="e283">
			<enumerator name="horizontal aligment bottom" code="0x02aaeff5"/>
			<enumerator name="horizontal aligment left" code="0x02aaefdd"/>
			<enumerator name="horizontal aligment right" code="0x02aaefc8"/>
			<enumerator name="horizontal aligment top" code="0x02aaefc0"/>
		</enumeration>
		<enumeration name="XlVerticalAlignmentTarget" code="e284">
			<enumerator name="vertical alignment top" code="0x02abefc0"/>
			<enumerator name="vertical alignment center" code="0x02abeff4"/>
			<enumerator name="vertical alignment bottom" code="0x02abeff5"/>
			<enumerator name="vertical alignment justify" code="0x02abefde"/>
			<enumerator name="vertical alignment distributed" code="0x02abefeb"/>
		</enumeration>
		<enumeration name="XlCheckBoxState" code="e285">
			<enumerator name="checkbox off" code="0x02acefce"/>
			<enumerator name="checkbox on" code="0x02ad0001"/>
			<enumerator name="checkbox mixed" code="0x02ad0002"/>
		</enumeration>
		<enumeration name="XlEditBoxItem" code="e286">
			<enumerator name="text" code="0x02adefc2"/>
			<enumerator name="a number" code="0x02ae0002"/>
			<enumerator name="xl number" code="0x02adefcf"/>
			<enumerator name="reference" code="0x02ae0004"/>
			<enumerator name="formula" code="0x02ae0005"/>
		</enumeration>
		<enumeration name="XlMultiSelect" code="e290">
			<enumerator name="select none" code="0x02b1efd2"/>
			<enumerator name="select simple" code="0x02b1efc6"/>
			<enumerator name="select extended" code="0x02b20003"/>
		</enumeration>
		<enumeration name="XlReplacements" code="e291">
			<enumerator name="text to replace" code="0x02b30001"/>
			<enumerator name="replacement text" code="0x02b30002"/>
		</enumeration>
		<enumeration name="XlCategoryNames" code="e292">
			<enumerator name="range object" code="0x02b40001" description="range object"/>
			<enumerator name="A1-style range reference" code="0x02b40002" description="range R1C1 reference"/>
			<enumerator name="named range" code="0x02b40003" description="range R1C1 reference"/>
			<enumerator name="list of category names" code="0x02b40004" description="A list category names"/>
		</enumeration>
		<enumeration name="MyUDateLinks" code="e294">
			<enumerator name="do not update links" code="0x02b60000"/>
			<enumerator name="update external links only" code="0x02b60001"/>
			<enumerator name="update remote links only" code="0x02b60002"/>
			<enumerator name="update remote and external links" code="0x02b60003"/>
		</enumeration>
		<enumeration name="MyODelimiter" code="e295">
			<enumerator name="tab delimiter" code="0x02b70001"/>
			<enumerator name="commas delimiter" code="0x02b70002"/>
			<enumerator name="spaces delimiter" code="0x02b70003"/>
			<enumerator name="semicolon delimiter" code="0x02b70004"/>
			<enumerator name="no delimiter" code="0x02b70005"/>
			<enumerator name="custom character delimiter" code="0x02b70006"/>
		</enumeration>
		<enumeration name="XlColorVariance" code="e296">
			<enumerator name="vary by color" code="0x02b80001"/>
			<enumerator name="vary by shade" code="0x02b80002"/>
			<enumerator name="vary by grayscale" code="0x02b80003"/>
			<enumerator name="vary by same color" code="0x02b80004"/>
		</enumeration>
		<enumeration name="XlTickHAlign" code="e299">
			<enumerator name="align tick label center" code="0x02baeff4"/>
			<enumerator name="align tick label left" code="0x02baefdd"/>
			<enumerator name="align tick label right" code="0x02baefc8"/>
		</enumeration>
		<enumeration name="XlLanguage" code="e300">
			<enumerator name="Basque" code="0x02bc042d"/>
			<enumerator name="Catalan" code="0x02bc0403"/>
			<enumerator name="Chinese" code="0x02bc0804"/>
			<enumerator name="Chinese Taiwan" code="0x02bc0404"/>
			<enumerator name="Czech" code="0x02bc0405"/>
			<enumerator name="Danish" code="0x02bc0406"/>
			<enumerator name="Dutch" code="0x02bc0413"/>
			<enumerator name="English US" code="0x02bc0409"/>
			<enumerator name="English AUS" code="0x02bc0c09"/>
			<enumerator name="English British" code="0x02bc0809"/>
			<enumerator name="English CAN" code="0x02bc1009"/>
			<enumerator name="Finnish" code="0x02bc040b"/>
			<enumerator name="French" code="0x02bc040c"/>
			<enumerator name="French Canadian" code="0x02bc0c0c"/>
			<enumerator name="German" code="0x02bc0407"/>
			<enumerator name="German Austria" code="0x02bc0c07"/>
			<enumerator name="Swiss German" code="0x02bc0807"/>
			<enumerator name="Greek" code="0x02bc0408"/>
			<enumerator name="Hungarian" code="0x02bc040e"/>
			<enumerator name="Italian" code="0x02bc0410"/>
			<enumerator name="Japanese" code="0x02bc0411"/>
			<enumerator name="Korean" code="0x02bc0412"/>
			<enumerator name="Malaysian" code="0x02bc043e"/>
			<enumerator name="Norwegian Bokmal" code="0x02bc0414"/>
			<enumerator name="Norwegian" code="0x02bc042c"/>
			<enumerator name="Polish" code="0x02bc0415"/>
			<enumerator name="Portuguese Brazil" code="0x02bc0416"/>
			<enumerator name="Portuguese Iberian" code="0x02bc0816"/>
			<enumerator name="Russian" code="0x02bc0419"/>
			<enumerator name="Slovak" code="0x02bc041b"/>
			<enumerator name="Slovenian" code="0x02bc0424"/>
			<enumerator name="Spanish" code="0x02bc040a"/>
			<enumerator name="Swedish" code="0x02bc041d"/>
			<enumerator name="Turkish" code="0x02bc041f"/>
		</enumeration>
		<enumeration name="XlSortOn" code="e301">
			<enumerator name="sort on cell value" code="0x02bd0000" description="Values."/>
			<enumerator name="sort on cell color" code="0x02bd0001" description="Cell color."/>
			<enumerator name="sort on font color" code="0x02bd0002" description="Font color."/>
			<enumerator name="sort on icon" code="0x02bd0003" description="Icon."/>
		</enumeration>
		<enumeration name="XlSortDataOption" code="e302">
			<enumerator name="sort normal" code="0x02be0000" description="Default. Sorts numeric and text data separately."/>
			<enumerator name="sort text as numbers" code="0x02be0001" description="Treat text as numeric data for the sort."/>
		</enumeration>
		<enumeration name="XlTotalsCalculation" code="e303">
			<enumerator name="none totals calc" code="0x02bf0000"/>
			<enumerator name="sum totals calc" code="0x02bf0001"/>
			<enumerator name="average totals calc" code="0x02bf0002"/>
			<enumerator name="count totals calc" code="0x02bf0003"/>
			<enumerator name="count number totals calc" code="0x02bf0004"/>
			<enumerator name="min totals calc" code="0x02bf0005"/>
			<enumerator name="max totals calc" code="0x02bf0006"/>
			<enumerator name="deviation totals calc" code="0x02bf0007"/>
			<enumerator name="var totals calc" code="0x02bf0008"/>
			<enumerator name="custom totals calc" code="0x02bf0009"/>
		</enumeration>
		<enumeration name="MsoChartElementType" code="cCET">
			<enumerator name="no chart title" code="0x03860000"/>
			<enumerator name="chart title centered overlay" code="0x03860001"/>
			<enumerator name="chart title above chart" code="0x03860002"/>
			<enumerator name="no legend" code="0x03860064"/>
			<enumerator name="legend right" code="0x03860065"/>
			<enumerator name="legend top" code="0x03860066"/>
			<enumerator name="legend left" code="0x03860067"/>
			<enumerator name="legend bottom" code="0x03860068"/>
			<enumerator name="legend right overlay" code="0x03860069"/>
			<enumerator name="legend left overlay" code="0x0386006a"/>
			<enumerator name="no data label" code="0x038600c8"/>
			<enumerator name="show data label" code="0x038600c9"/>
			<enumerator name="data label center" code="0x038600ca"/>
			<enumerator name="data label inside end" code="0x038600cb"/>
			<enumerator name="data label inside base" code="0x038600cc"/>
			<enumerator name="data label outside end" code="0x038600cd"/>
			<enumerator name="data label left" code="0x038600ce"/>
			<enumerator name="data label right" code="0x038600cf"/>
			<enumerator name="data label top" code="0x038600d0"/>
			<enumerator name="data label bottom" code="0x038600d1"/>
			<enumerator name="data label best fit" code="0x038600d2"/>
			<enumerator name="no primary category axis title" code="0x0386012c"/>
			<enumerator name="primary category axis title adjacent to axis" code="0x0386012d"/>
			<enumerator name="primary category axis title below axis" code="0x0386012e"/>
			<enumerator name="primary category axis title rotated" code="0x0386012f"/>
			<enumerator name="primary category axis title vertical" code="0x03860130"/>
			<enumerator name="primary category axis title horizontal" code="0x03860131"/>
			<enumerator name="no primary value axis title" code="0x03860132"/>
			<enumerator name="primary value axis title adjacent to axis" code="0x03860133"/>
			<enumerator name="primary value axis title below axis" code="0x03860134"/>
			<enumerator name="primary value axis title rotated" code="0x03860135"/>
			<enumerator name="primary value axis title vertical" code="0x03860136"/>
			<enumerator name="primary value axis title horizontal" code="0x03860137"/>
			<enumerator name="no secondary category axis title" code="0x03860138"/>
			<enumerator name="secondary category axis title adjacent to axis" code="0x03860139"/>
			<enumerator name="secondary category axis title below Axis" code="0x0386013a"/>
			<enumerator name="secondary category axis title rotated" code="0x0386013b"/>
			<enumerator name="secondary category axis title vertical" code="0x0386013c"/>
			<enumerator name="secondary category axis title horizontal" code="0x0386013d"/>
			<enumerator name="no secondary value axis title" code="0x0386013e"/>
			<enumerator name="secondary value axis title Adjacent to axis" code="0x0386013f"/>
			<enumerator name="secondary value axis title below axis" code="0x03860140"/>
			<enumerator name="secondary value axis title rotated" code="0x03860141"/>
			<enumerator name="secondary value axis title vertical" code="0x03860142"/>
			<enumerator name="secondary value axis title horizontal" code="0x03860143"/>
			<enumerator name="no series axis title" code="0x03860144"/>
			<enumerator name="series axis title rotated" code="0x03860145"/>
			<enumerator name="series axis title vertical" code="0x03860146"/>
			<enumerator name="series axis title horizontal" code="0x03860147"/>
			<enumerator name="no primary value grid lines" code="0x03860148"/>
			<enumerator name="primary value grid lines minor" code="0x03860149"/>
			<enumerator name="primary value grid lines major" code="0x0386014a"/>
			<enumerator name="primary value grid lines minor major" code="0x0386014b"/>
			<enumerator name="no primary category grid lines" code="0x0386014c"/>
			<enumerator name="primary category grid lines minor" code="0x0386014d"/>
			<enumerator name="primary category grid lines major" code="0x0386014e"/>
			<enumerator name="primary category grid lines minor major" code="0x0386014f"/>
			<enumerator name="no secondary value grid lines" code="0x03860150"/>
			<enumerator name="secondary value grid lines minor" code="0x03860151"/>
			<enumerator name="secondary value grid lines major" code="0x03860152"/>
			<enumerator name="secondary value grid lines minor major" code="0x03860153"/>
			<enumerator name="no secondary category grid lines" code="0x03860154"/>
			<enumerator name="secondary category grid lines minor" code="0x03860155"/>
			<enumerator name="secondary category grid lines major" code="0x03860156"/>
			<enumerator name="secondary category grid lines minor major" code="0x03860157"/>
			<enumerator name="no series axis grid lines" code="0x03860158"/>
			<enumerator name="series axis grid lines minor" code="0x03860159"/>
			<enumerator name="series axis grid lines major" code="0x0386015a"/>
			<enumerator name="series axis grid lines minor major" code="0x0386015b"/>
			<enumerator name="no primary category axis" code="0x0386015c"/>
			<enumerator name="primary category axis show" code="0x0386015d"/>
			<enumerator name="primary category axis without labels" code="0x0386015e"/>
			<enumerator name="primary category axis reverse" code="0x0386015f"/>
			<enumerator name="no primary value axis" code="0x03860160"/>
			<enumerator name="show primary value axis" code="0x03860161"/>
			<enumerator name="primary value axis thousands" code="0x03860162"/>
			<enumerator name="primary value axis millions" code="0x03860163"/>
			<enumerator name="primary value axis billions" code="0x03860164"/>
			<enumerator name="primary value axis log scale" code="0x03860165"/>
			<enumerator name="no secondary category axis" code="0x03860166"/>
			<enumerator name="show secondary category axis" code="0x03860167"/>
			<enumerator name="secondary category axis without labels" code="0x03860168"/>
			<enumerator name="secondary category axis reverse" code="0x03860169"/>
			<enumerator name="no secondary value axis" code="0x0386016a"/>
			<enumerator name="show secondary value axis" code="0x0386016b"/>
			<enumerator name="secondary value axis thousands" code="0x0386016c"/>
			<enumerator name="secondary value axis millions" code="0x0386016d"/>
			<enumerator name="secondary value axis billions" code="0x0386016e"/>
			<enumerator name="secondary value axis log scale" code="0x0386016f"/>
			<enumerator name="no series axis" code="0x03860170"/>
			<enumerator name="show series axis" code="0x03860171"/>
			<enumerator name="series axis without labeling" code="0x03860172"/>
			<enumerator name="series axis reverse" code="0x03860173"/>
			<enumerator name="primary category axis thousands" code="0x03860174"/>
			<enumerator name="primary category axis millions" code="0x03860175"/>
			<enumerator name="primary category axis billions" code="0x03860176"/>
			<enumerator name="primary category axis log scale" code="0x03860177"/>
			<enumerator name="secondary category axis thousands" code="0x03860178"/>
			<enumerator name="secondary category axis millions" code="0x03860179"/>
			<enumerator name="secondary category axis billions" code="0x0386017a"/>
			<enumerator name="secondary category axis log scale" code="0x0386017b"/>
			<enumerator name="no data table" code="0x038601f4"/>
			<enumerator name="show data table" code="0x038601f5"/>
			<enumerator name="data table with legend keys" code="0x038601f6"/>
			<enumerator name="no Trendline" code="0x03860258"/>
			<enumerator name="trendline add linear" code="0x03860259"/>
			<enumerator name="trendline add exponential" code="0x0386025a"/>
			<enumerator name="trendline add linear forecast" code="0x0386025b"/>
			<enumerator name="trendline add two period moving average" code="0x0386025c"/>
			<enumerator name="no error bar" code="0x038602bc"/>
			<enumerator name="error bar standard error" code="0x038602bd"/>
			<enumerator name="error bar percentage" code="0x038602be"/>
			<enumerator name="error bar standard deviation" code="0x038602bf"/>
			<enumerator name="no line" code="0x03860320"/>
			<enumerator name="line drop line" code="0x03860321"/>
			<enumerator name="line hiLo line" code="0x03860322"/>
			<enumerator name="line series line" code="0x03860323"/>
			<enumerator name="line drop hilo line" code="0x03860324"/>
			<enumerator name="no up down bars" code="0x03860384"/>
			<enumerator name="show up down bars" code="0x03860385"/>
			<enumerator name="no plot area" code="0x038603e8"/>
			<enumerator name="show plot area" code="0x038603e9"/>
			<enumerator name="no chart wall" code="0x0386044c"/>
			<enumerator name="show chart wall" code="0x0386044d"/>
			<enumerator name="no chart floor" code="0x038604b0"/>
			<enumerator name="show chart floor" code="0x038604b1"/>
		</enumeration>
		<enumeration name="XlDynamicFilterCriteria" code="xDFC">
			<enumerator name="filter above average" code="0x03870021" description="Filter all above-average values."/>
			<enumerator name="filter all dates in april" code="0x03870018" description="Filter all dates in April."/>
			<enumerator name="filter all dates in august" code="0x0387001c" description="Filter all dates in August."/>
			<enumerator name="filter all dates in december" code="0x03870020" description="Filter all dates in December."/>
			<enumerator name="filter all dates in february" code="0x03870016" description="Filter all dates in February"/>
			<enumerator name="filter all dates in january" code="0x03870015" description="Filter all dates in January."/>
			<enumerator name="filter all dates in july" code="0x0387001b" description="Filter all dates in July."/>
			<enumerator name="filter all dates in june" code="0x0387001a" description="Filter all dates in June."/>
			<enumerator name="filter all dates in march" code="0x03870017" description="Filter all dates in March."/>
			<enumerator name="filter all dates in may" code="0x03870019" description="Filter all dates in May."/>
			<enumerator name="filter all dates in november" code="0x0387001f" description="Filter all dates in November."/>
			<enumerator name="filter all dates in october" code="0x0387001e" description="Filter all dates in October."/>
			<enumerator name="filter all dates in quarter1" code="0x03870011" description="Filter all dates in Quarter1."/>
			<enumerator name="filter all dates in quarter2" code="0x03870012" description="Filter all dates in Quarter2."/>
			<enumerator name="filter all dates in quarter3" code="0x03870013" description="Filter all dates in Quarter3."/>
			<enumerator name="filter all dates in quarter4" code="0x03870014" description="Filter all dates in Quarter4."/>
			<enumerator name="filter all dates in september" code="0x0387001d" description="Filter all dates in September."/>
			<enumerator name="filter below average" code="0x03870022" description="Filter all below-average values."/>
			<enumerator name="filter last month" code="0x03870008" description="Filter all values related to last month."/>
			<enumerator name="filter last quarter" code="0x0387000b" description="Filter all values related to last quarter."/>
			<enumerator name="filter last week" code="0x03870005" description="Filter all values related to last week."/>
			<enumerator name="filter last year" code="0x0387000e" description="Filter all values related to last year."/>
			<enumerator name="filter next month" code="0x03870009" description="Filter all values related to next month."/>
			<enumerator name="filter next quarter" code="0x0387000c" description="Filter all values related to next quarter."/>
			<enumerator name="filter next week" code="0x03870006" description="Filter all values related to next week."/>
			<enumerator name="filter next year" code="0x0387000f" description="Filter all values related to next year."/>
			<enumerator name="filter this month" code="0x03870007" description="Filter all values related to the current month."/>
			<enumerator name="filter this quarter" code="0x0387000a" description="Filter all values related to the current quarter."/>
			<enumerator name="filter this week" code="0x03870004" description="Filter all values related to the current week."/>
			<enumerator name="filter this year" code="0x0387000d" description="Filter all values related to the current year."/>
			<enumerator name="filter today" code="0x03870001" description="Filter all values related to the current date."/>
			<enumerator name="filter tomorrow" code="0x03870003" description="Filter all values related to tomorrow."/>
			<enumerator name="filter year to date" code="0x03870010" description="Filter all values from today until a year ago."/>
			<enumerator name="filter yesterday" code="0x03870002" description="Filter all values related to yesterday."/>
		</enumeration>
		<enumeration name="XlThemeFont" code="e304">
			<enumerator name="theme font index none" code="0x02c00000"/>
			<enumerator name="theme font index major" code="0x02c00001"/>
			<enumerator name="theme font index minor" code="0x02c00002"/>
		</enumeration>
		<enumeration name="XlThemeColor" code="e305">
			<enumerator name="color index none" code="0x02c0efd2"/>
			<enumerator name="first dark theme color" code="0x02c10001"/>
			<enumerator name="first light theme color" code="0x02c10002"/>
			<enumerator name="second dark theme color" code="0x02c10003"/>
			<enumerator name="second light theme color" code="0x02c10004"/>
			<enumerator name="first accent theme color" code="0x02c10005"/>
			<enumerator name="second accent theme color" code="0x02c10006"/>
			<enumerator name="third accent theme color" code="0x02c10007"/>
			<enumerator name="fourth accent theme color" code="0x02c10008"/>
			<enumerator name="fifth accent theme color" code="0x02c10009"/>
			<enumerator name="sixth accent theme color" code="0x02c1000a"/>
			<enumerator name="hyperlink theme color" code="0x02c1000b"/>
			<enumerator name="followed hyperlink theme color" code="0x02c1000c"/>
		</enumeration>
		<enumeration name="XlCheckInVersionType" code="Civt">
			<enumerator name="minor version" code="0x02c40000"/>
			<enumerator name="major version" code="0x02c40001"/>
			<enumerator name="overwrite current version" code="0x02c40002"/>
		</enumeration>
		<enumeration name="XlWebSelectionType" code="ExWt">
			<enumerator name="entire page" code="0x02c50000"/>
			<enumerator name="all tables" code="0x02c50001"/>
			<enumerator name="specified tables" code="0x02c50002"/>
		</enumeration>
		<enumeration name="XlWebFormatting" code="EbfT">
			<enumerator name="web formatting all" code="0x02c60000"/>
			<enumerator name="web formatting rtf" code="0x02c60001"/>
			<enumerator name="web formatting none" code="0x02c60002"/>
		</enumeration>
		<enumeration name="XlRobustConnect" code="XRbC">
			<enumerator name="as required" code="0x02c70000"/>
			<enumerator name="always" code="0x02c70001"/>
			<enumerator name="never" code="0x02c70002"/>
		</enumeration>
		<enumeration name="XlConditionValueTypes" code="e306">
			<enumerator name="condition value none" code="0x02c7ffff"/>
			<enumerator name="condition value number" code="0x02c80000"/>
			<enumerator name="condition value lowest value" code="0x02c80001"/>
			<enumerator name="condition value highest value" code="0x02c80002"/>
			<enumerator name="condition value percent" code="0x02c80003"/>
			<enumerator name="condition value formula" code="0x02c80004"/>
			<enumerator name="condition value percentile" code="0x02c80005"/>
			<enumerator name="condition value automatic minimum" code="0x02c80006"/>
			<enumerator name="condition value automatic maximum" code="0x02c80007"/>
		</enumeration>
		<enumeration name="XlPivotConditionScope" code="e307">
			<enumerator name="pivot condition selection scope" code="0x02c90000"/>
			<enumerator name="pivot condition fields scope" code="0x02c90001"/>
			<enumerator name="pivot condition data field scope" code="0x02c90002"/>
		</enumeration>
		<enumeration name="XlDataBarFillType" code="e308">
			<enumerator name="databar fill solid" code="0x02ca0000"/>
			<enumerator name="databar fill gradient" code="0x02ca0001"/>
		</enumeration>
		<enumeration name="XlDataBarBorderType" code="e309">
			<enumerator name="databar border none" code="0x02cb0000"/>
			<enumerator name="databar border solid" code="0x02cb0001"/>
		</enumeration>
		<enumeration name="XlDataBarAxisPosition" code="e310">
			<enumerator name="databar axis automatic" code="0x02cc0000"/>
			<enumerator name="databar axis midpoint" code="0x02cc0001"/>
			<enumerator name="databar axis none" code="0x02cc0002"/>
		</enumeration>
		<enumeration name="XlDataBarNegativeFormatType" code="e311">
			<enumerator name="databar automatic" code="0x02cd0000"/>
			<enumerator name="databar positive format" code="0x02cd0001"/>
			<enumerator name="databar custom format" code="0x02cd0002"/>
		</enumeration>
		<enumeration name="XlIcon" code="e312">
			<enumerator name="format condition icon no cell icon" code="0x02cdffff"/>
			<enumerator name="format condition icon green up arrow" code="0x02ce0001"/>
			<enumerator name="format condition icon yellow side arrow" code="0x02ce0002"/>
			<enumerator name="format condition icon red down arrow" code="0x02ce0003"/>
			<enumerator name="format condition icon gray up arrow" code="0x02ce0004"/>
			<enumerator name="format condition icon gray side arrow" code="0x02ce0005"/>
			<enumerator name="format condition icon gray down arrow" code="0x02ce0006"/>
			<enumerator name="format condition icon green flag" code="0x02ce0007"/>
			<enumerator name="format condition icon yellow flag" code="0x02ce0008"/>
			<enumerator name="format condition icon red flag" code="0x02ce0009"/>
			<enumerator name="format condition icon green circle" code="0x02ce000a"/>
			<enumerator name="format condition icon yellow circle" code="0x02ce000b"/>
			<enumerator name="format condition icon red circle with border" code="0x02ce000c"/>
			<enumerator name="format condition icon black circle with border" code="0x02ce000d"/>
			<enumerator name="format condition icon green traffic light" code="0x02ce000e"/>
			<enumerator name="format condition icon yellow traffic light" code="0x02ce000f"/>
			<enumerator name="format condition icon red traffic light" code="0x02ce0010"/>
			<enumerator name="format condition icon yellow triangle" code="0x02ce0011"/>
			<enumerator name="format condition icon red diamond" code="0x02ce0012"/>
			<enumerator name="format condition icon green check symbol" code="0x02ce0013"/>
			<enumerator name="format condition icon yellow exclamation symbol" code="0x02ce0014"/>
			<enumerator name="format condition icon red cross symbol" code="0x02ce0015"/>
			<enumerator name="format condition icon green check" code="0x02ce0016"/>
			<enumerator name="format condition icon yellow exclamation" code="0x02ce0017"/>
			<enumerator name="format condition icon red cross" code="0x02ce0018"/>
			<enumerator name="format condition icon yellow up incline arrow" code="0x02ce0019"/>
			<enumerator name="format condition icon yellow down incline arrow" code="0x02ce001a"/>
			<enumerator name="format condition icon gray up incline arrow" code="0x02ce001b"/>
			<enumerator name="format condition icon gray down incline arrow" code="0x02ce001c"/>
			<enumerator name="format condition icon red circle" code="0x02ce001d"/>
			<enumerator name="format condition icon pink circle" code="0x02ce001e"/>
			<enumerator name="format condition icon gray circle" code="0x02ce001f"/>
			<enumerator name="format condition icon black circle" code="0x02ce0020"/>
			<enumerator name="format condition icon circle with one white quarter" code="0x02ce0021"/>
			<enumerator name="format condition icon circle with two white quarters" code="0x02ce0022"/>
			<enumerator name="format condition icon circle with three white quarters" code="0x02ce0023"/>
			<enumerator name="format condition icon white circle all white quarters" code="0x02ce0024"/>
			<enumerator name="format condition icon 0 bars" code="0x02ce0025"/>
			<enumerator name="format condition icon 1 bar" code="0x02ce0026"/>
			<enumerator name="format condition icon 2 bars" code="0x02ce0027"/>
			<enumerator name="format condition icon 3 bars" code="0x02ce0028"/>
			<enumerator name="format condition icon 4 bars" code="0x02ce0029"/>
			<enumerator name="format condition icon gold star" code="0x02ce002a"/>
			<enumerator name="format condition icon half gold star" code="0x02ce002b"/>
			<enumerator name="format condition icon silver star" code="0x02ce002c"/>
			<enumerator name="format condition icon green up triangle" code="0x02ce002d"/>
			<enumerator name="format condition icon yellow dash" code="0x02ce002e"/>
			<enumerator name="format condition icon red down triangle" code="0x02ce002f"/>
			<enumerator name="format condition icon 4 filled boxes" code="0x02ce0030"/>
			<enumerator name="format condition icon 3 filled boxes" code="0x02ce0031"/>
			<enumerator name="format condition icon 2 filled boxes" code="0x02ce0032"/>
			<enumerator name="format condition icon 1 filled box" code="0x02ce0033"/>
			<enumerator name="format condition icon 0 filled boxes" code="0x02ce0034"/>
		</enumeration>
		<enumeration name="XlIconSet" code="e313">
			<enumerator name="icon set custom" code="0x02ceffff"/>
			<enumerator name="icon set 3 arrows" code="0x02cf0001"/>
			<enumerator name="icon set 3 arrows gray" code="0x02cf0002"/>
			<enumerator name="icon set 3 flags" code="0x02cf0003"/>
			<enumerator name="icon set 3 traffic lights 1" code="0x02cf0004"/>
			<enumerator name="icon set 3 traffic lights 2" code="0x02cf0005"/>
			<enumerator name="icon set 3 signs" code="0x02cf0006"/>
			<enumerator name="icon set 3 symbols" code="0x02cf0007"/>
			<enumerator name="icon set 3 symbols 2" code="0x02cf0008"/>
			<enumerator name="icon set 4 arrows" code="0x02cf0009"/>
			<enumerator name="icon set 4 arrows gray" code="0x02cf000a"/>
			<enumerator name="icon set 4 red to black" code="0x02cf000b"/>
			<enumerator name="icon set 4 CRV" code="0x02cf000c"/>
			<enumerator name="icon set 4 traffic lights" code="0x02cf000d"/>
			<enumerator name="icon set 5 arrows" code="0x02cf000e"/>
			<enumerator name="icon set 5 arrows gray" code="0x02cf000f"/>
			<enumerator name="icon set 5 CRV" code="0x02cf0010"/>
			<enumerator name="icon set 5 quarters" code="0x02cf0011"/>
			<enumerator name="icon set 3 stars" code="0x02cf0012"/>
			<enumerator name="icon set 3 triangles" code="0x02cf0013"/>
			<enumerator name="icon set 5 boxes" code="0x02cf0014"/>
		</enumeration>
		<enumeration name="XlTopBottom" code="e314">
			<enumerator name="top 10 top" code="0x02d00001"/>
			<enumerator name="top 10 bottom" code="0x02d00000"/>
		</enumeration>
		<enumeration name="XlCalcFor" code="e315">
			<enumerator name="calc for all values" code="0x02d10000"/>
			<enumerator name="calc for row groups" code="0x02d10001"/>
			<enumerator name="calc for col groups" code="0x02d10002"/>
		</enumeration>
		<enumeration name="XlAboveBelow" code="e316">
			<enumerator name="format above average" code="0x02d20000"/>
			<enumerator name="format below average" code="0x02d20001"/>
			<enumerator name="format equal above average" code="0x02d20002"/>
			<enumerator name="format equal below average" code="0x02d20003"/>
			<enumerator name="format above standard deviation" code="0x02d20004"/>
			<enumerator name="format below standard deviation" code="0x02d20005"/>
		</enumeration>
		<enumeration name="XlDupeUnique" code="e317">
			<enumerator name="format unique values" code="0x02d30000"/>
			<enumerator name="format duplicate values" code="0x02d30001"/>
		</enumeration>
		<enumeration name="XlContainsOperator" code="e318">
			<enumerator name="text contains" code="0x02d40000"/>
			<enumerator name="text does not contain" code="0x02d40001"/>
			<enumerator name="text begins with" code="0x02d40002"/>
			<enumerator name="text ends with" code="0x02d40003"/>
		</enumeration>
		<enumeration name="XlTimePeriods" code="e319">
			<enumerator name="date is today" code="0x02d50000"/>
			<enumerator name="date is yesterday" code="0x02d50001"/>
			<enumerator name="date is within the last seven days" code="0x02d50002"/>
			<enumerator name="date is this week" code="0x02d50003"/>
			<enumerator name="date is last week" code="0x02d50004"/>
			<enumerator name="date is last month" code="0x02d50005"/>
			<enumerator name="date is tomorrow" code="0x02d50006"/>
			<enumerator name="date is next week" code="0x02d50007"/>
			<enumerator name="date is next month" code="0x02d50008"/>
			<enumerator name="date is this month" code="0x02d50009"/>
		</enumeration>
		<enumeration name="XlDataBarNegativeColorType" code="e320">
			<enumerator name="databar color type color" code="0x02d60000"/>
			<enumerator name="databar color type same as positive" code="0x02d60001"/>
		</enumeration>
		<enumeration name="large scroll" code="4021">
			<enumerator name="window" code="cwin"/>
			<enumerator name="pane" code="X189"/>
		</enumeration>
		<enumeration name="print out" code="4002">
			<enumerator name="window" code="cwin"/>
			<enumerator name="sheet" code="X128"/>
			<enumerator name="workbook" code="X141"/>
		</enumeration>
		<enumeration name="print preview" code="4003">
			<enumerator name="window" code="cwin"/>
			<enumerator name="sheet" code="X128"/>
			<enumerator name="workbook" code="X141"/>
		</enumeration>
		<enumeration name="small scroll" code="4022">
			<enumerator name="window" code="cwin"/>
			<enumerator name="pane" code="X189"/>
		</enumeration>
		<enumeration name="calculate" code="4004">
			<enumerator name="application" code="capp"/>
			<enumerator name="sheet" code="X128"/>
		</enumeration>
		<enumeration name="check spelling" code="4010">
			<enumerator name="sheet" code="X128"/>
			<enumerator name="button" code="Xbtn"/>
			<enumerator name="checkbox" code="Xckb"/>
			<enumerator name="option button" code="XObn"/>
			<enumerator name="groupbox" code="XGBc"/>
			<enumerator name="label" code="Xlbl"/>
			<enumerator name="textbox" code="XTbx"/>
		</enumeration>
		<enumeration name="copy picture" code="4013">
			<enumerator name="button" code="Xbtn"/>
			<enumerator name="checkbox" code="Xckb"/>
			<enumerator name="option button" code="XObn"/>
			<enumerator name="scrollbar" code="XSrl"/>
			<enumerator name="listbox" code="XLbx"/>
			<enumerator name="groupbox" code="XGBc"/>
			<enumerator name="dropdown" code="XdpD"/>
			<enumerator name="spinner" code="XSpn"/>
			<enumerator name="label" code="Xlbl"/>
			<enumerator name="textbox" code="XTbx"/>
		</enumeration>
		<enumeration name="cut" code="4014">
			<enumerator name="button" code="Xbtn"/>
			<enumerator name="checkbox" code="Xckb"/>
			<enumerator name="option button" code="XObn"/>
			<enumerator name="scrollbar" code="XSrl"/>
			<enumerator name="listbox" code="XLbx"/>
			<enumerator name="groupbox" code="XGBc"/>
			<enumerator name="dropdown" code="XdpD"/>
			<enumerator name="spinner" code="XSpn"/>
			<enumerator name="label" code="Xlbl"/>
			<enumerator name="textbox" code="XTbx"/>
		</enumeration>
		<enumeration name="show" code="4023">
			<enumerator name="dialog" code="X165"/>
			<enumerator name="scenario" code="X191"/>
		</enumeration>
		<enumeration name="unprotect" code="4005">
			<enumerator name="sheet" code="X128"/>
			<enumerator name="workbook" code="X141"/>
		</enumeration>
		<enumeration name="bring to front" code="4011">
			<enumerator name="button" code="Xbtn"/>
			<enumerator name="checkbox" code="Xckb"/>
			<enumerator name="option button" code="XObn"/>
			<enumerator name="scrollbar" code="XSrl"/>
			<enumerator name="listbox" code="XLbx"/>
			<enumerator name="groupbox" code="XGBc"/>
			<enumerator name="dropdown" code="XdpD"/>
			<enumerator name="spinner" code="XSpn"/>
			<enumerator name="label" code="Xlbl"/>
			<enumerator name="textbox" code="XTbx"/>
		</enumeration>
		<enumeration name="send to back" code="4015">
			<enumerator name="button" code="Xbtn"/>
			<enumerator name="checkbox" code="Xckb"/>
			<enumerator name="option button" code="XObn"/>
			<enumerator name="scrollbar" code="XSrl"/>
			<enumerator name="listbox" code="XLbx"/>
			<enumerator name="groupbox" code="XGBc"/>
			<enumerator name="dropdown" code="XdpD"/>
			<enumerator name="spinner" code="XSpn"/>
			<enumerator name="label" code="Xlbl"/>
			<enumerator name="textbox" code="XTbx"/>
		</enumeration>
		<enumeration name="set first priority" code="4026">
			<enumerator name="format condition" code="X227"/>
			<enumerator name="color scale format condition" code="X325"/>
			<enumerator name="databar format condition" code="X312"/>
			<enumerator name="icon set format condition" code="X315"/>
			<enumerator name="top 10 format condition" code="X321"/>
			<enumerator name="above average format condition" code="X322"/>
			<enumerator name="unique values format condition" code="X323"/>
		</enumeration>
		<enumeration name="set last priority" code="4027">
			<enumerator name="format condition" code="X227"/>
			<enumerator name="color scale format condition" code="X325"/>
			<enumerator name="databar format condition" code="X312"/>
			<enumerator name="icon set format condition" code="X315"/>
			<enumerator name="top 10 format condition" code="X321"/>
			<enumerator name="above average format condition" code="X322"/>
			<enumerator name="unique values format condition" code="X323"/>
		</enumeration>
		<enumeration name="modify applies to range" code="4028">
			<enumerator name="format condition" code="X227"/>
			<enumerator name="color scale format condition" code="X325"/>
			<enumerator name="databar format condition" code="X312"/>
			<enumerator name="icon set format condition" code="X315"/>
			<enumerator name="top 10 format condition" code="X321"/>
			<enumerator name="above average format condition" code="X322"/>
			<enumerator name="unique values format condition" code="X323"/>
		</enumeration>
		<enumeration name="clear all filters" code="4008">
			<enumerator name="pivot table" code="X155"/>
			<enumerator name="pivot field" code="X157"/>
		</enumeration>
		<enumeration name="delete" code="4006">
			<enumerator name="cube field" code="X900"/>
			<enumerator name="calculated member" code="X901"/>
			<enumerator name="pivot filter" code="X903"/>
			<enumerator name="value change" code="X905"/>
		</enumeration>
		<enumeration name="drill to" code="4009">
			<enumerator name="pivot field" code="X157"/>
			<enumerator name="pivot item" code="X160"/>
		</enumeration>
		<enumeration name="clear manual filter" code="4007">
			<enumerator name="cube field" code="X900"/>
			<enumerator name="pivot field" code="X157"/>
		</enumeration>
		<enumeration name="reset timer" code="4024">
			<enumerator name="pivot cache" code="X151"/>
			<enumerator name="query table" code="X231"/>
		</enumeration>
		<enumeration name="add item to list" code="4016">
			<enumerator name="listbox" code="XLbx"/>
			<enumerator name="dropdown" code="XdpD"/>
		</enumeration>
		<enumeration name="get border" code="4025">
			<enumerator name="format condition" code="X227"/>
			<enumerator name="display format" code="X306"/>
			<enumerator name="top 10 format condition" code="X321"/>
			<enumerator name="above average format condition" code="X322"/>
			<enumerator name="unique values format condition" code="X323"/>
		</enumeration>
		<enumeration name="set list item" code="4018">
			<enumerator name="listbox" code="XLbx"/>
			<enumerator name="dropdown" code="XdpD"/>
		</enumeration>
		<enumeration name="copy object" code="4012">
			<enumerator name="button" code="Xbtn"/>
			<enumerator name="checkbox" code="Xckb"/>
			<enumerator name="option button" code="XObn"/>
			<enumerator name="scrollbar" code="XSrl"/>
			<enumerator name="listbox" code="XLbx"/>
			<enumerator name="groupbox" code="XGBc"/>
			<enumerator name="dropdown" code="XdpD"/>
			<enumerator name="spinner" code="XSpn"/>
			<enumerator name="label" code="Xlbl"/>
			<enumerator name="textbox" code="XTbx"/>
		</enumeration>
		<enumeration name="get list item" code="4017">
			<enumerator name="listbox" code="XLbx"/>
			<enumerator name="dropdown" code="XdpD"/>
		</enumeration>
		<enumeration name="remove all items" code="4019">
			<enumerator name="listbox" code="XLbx"/>
			<enumerator name="dropdown" code="XdpD"/>
		</enumeration>
		<enumeration name="remove item" code="4020">
			<enumerator name="listbox" code="XLbx"/>
			<enumerator name="dropdown" code="XdpD"/>
		</enumeration>
		<enumeration name="activate object" code="4001">
			<enumerator name="window" code="cwin"/>
			<enumerator name="sheet" code="X128"/>
			<enumerator name="workbook" code="X141"/>
			<enumerator name="pane" code="X189"/>
		</enumeration>
	</suite>
	<suite name="Drawing Suite" code="sDRw" description="Classes and Methods used for Graphic Objects">
		<command name="apply" code="sDRw2337" description="Applies to the specified shape formatting that's been copied by using the pick up method.">
			<direct-parameter type="shape"/>
		</command>
		<command name="automatic length" code="sDRw1003" description="Specifies that the first segment of the callout line, the segment attached to the text callout box, be scaled automatically when the callout is moved.">
			<direct-parameter type="callout format"/>
		</command>
		<command name="begin connect" code="sDRw2377" description="Attaches the beginning of the specified connector to a specified shape. If there's already a connection between the beginning of the connector and another shape, that connection is broken.">
			<direct-parameter type="connector format"/>
			<parameter name="connected shape" code="5345" type="shape" description="The shape to attach the beginning of the connector to."/>
			<parameter name="connection site" code="5346" type="integer" description=" A connection site on the shape specified by connected shape. Must be an integer between 1 and the integer returned by the connection site count property of the specified shape."/>
		</command>
		<command name="begin disconnect" code="sDRw2378" description="Detaches the beginning of the specified connector from the shape it's attached to. This method doesn't alter the size or position of the connector: the beginning of the connector remains positioned at a connection site but is no longer connected.">
			<direct-parameter type="connector format"/>
		</command>
		<command name="bring to front" code="sDRw1984" description="Bring the object to the front of the z-order of objects.">
			<direct-parameter type="4029"/>
		</command>
		<command name="check spelling" code="sDRw1212" description="Checks the spelling of an object.">
			<direct-parameter type="4034"/>
			<parameter name="custom dictionary" code="5081" type="text" optional="yes" description="A string that indicates the file name of the custom dictionary to examine if the word isn't found in the main dictionary. If this argument is omitted, the currently specified dictionary is used."/>
			<parameter name="ignore uppercase" code="5082" type="boolean" optional="yes" description="Set to true to have Microsoft Excel ignore words that are all uppercase. False to have Microsoft Excel check words that are all uppercase."/>
			<parameter name="always suggest" code="5145" type="boolean" optional="yes" description="Set to true to have Microsoft Excel display a list of suggested alternate spellings when an incorrect spelling is found. False to have Microsoft Excel wait for you to input the correct spelling."/>
		</command>
		<command name="copy object" code="sDRwXcpO" description="Copies the object to the clipboard.">
			<direct-parameter type="4030"/>
		</command>
		<command name="copy picture" code="sDRw1539" description="Copies the selected object to the clipboard as a picture.">
			<direct-parameter type="4031"/>
			<parameter name="appearance" code="5155" type="XlPictureAppearance" optional="yes" description="Specifies how the picture should be copied."/>
			<parameter name="format" code="5140" type="XlCopyPictureFormat" optional="yes" description="The format of the picture."/>
		</command>
		<command name="custom drop" code="sDRw1004" description="Sets the vertical distance in points from the edge of the text bounding box to the place where the callout line attaches to the text box.">
			<direct-parameter type="4035"/>
			<parameter name="drop" code="5002" type="real" description="The drop distance, in points."/>
		</command>
		<command name="custom length" code="sDRw1005" description="Specifies that the first segment of the callout line, the segment attached to the text callout box, retain a fixed length whenever the callout is moved.">
			<direct-parameter type="4036"/>
			<parameter name="length" code="5003" type="real" description="The length of the first segment of the callout, in points."/>
		</command>
		<command name="cut" code="sDRw1543" description="Cuts the object to the clipboard.">
			<direct-parameter type="4032"/>
		</command>
		<command name="delete gradient stop" code="sDRwdGrd" description="Removes a gradient stop.">
			<direct-parameter type="fill format"/>
			<parameter name="stop index" code="igSI" type="integer" description="The index number of the stop."/>
		</command>
		<command name="end connect" code="sDRw2379" description="Attaches the end of the specified connector to a specified shape. If there's already a connection between the end of the connector and another shape, that connection is broken.">
			<direct-parameter type="connector format"/>
			<parameter name="connected shape" code="5345" type="shape" description="The shape to attach the end of the connector to."/>
			<parameter name="connection site" code="5346" type="integer" description=" A connection site on the shape specified by connected shape. Must be an integer between 1 and the integer returned by the connection site count property of the specified shape."/>
		</command>
		<command name="end disconnect" code="sDRw2380" description="Detaches the end of the specified connector from the shape it's attached to. This method doesn't alter the size or position of the connector: the end of the connector remains positioned at a connection site but is no longer connected.">
			<direct-parameter type="connector format"/>
		</command>
		<command name="flip" code="sDRw2338" description="Flips the specified shape around its horizontal or vertical axis.">
			<direct-parameter type="shape"/>
			<parameter name="flip cmd" code="5340" type="MsoFlipCmd"/>
		</command>
		<command name="get custom color" code="sDRwtGCC" description="Returns the custom color for the specified Microsoft Office theme.">
			<direct-parameter type="theme color scheme"/>
			<parameter name="name" code="pnam" type="text"/>
			<result>
				<type type="integer" list="yes"/>
			</result>
		</command>
		<command name="insert gradient stop" code="sDRwiGrd" description="Adds a stop to a gradient.">
			<direct-parameter type="fill format"/>
			<parameter name="custom color" code="igCC" description="Sets the color of the stop within a gradient.">
				<type type="integer" list="yes"/>
			</parameter>
			<parameter name="position" code="posn" type="real" description="Sets the position of the stop within the gradient expressed as a percent."/>
			<parameter name="transparency" code="igTR" type="real" optional="yes" description="Sets the transparency of the stop within the gradient."/>
			<parameter name="stop index" code="igSI" type="integer" optional="yes" description="The index number of the stop."/>
		</command>
		<command name="load theme color scheme" code="sDRwlTCS" description="Loads the color scheme of a Microsoft Office theme from a file">
			<direct-parameter type="theme color scheme"/>
			<parameter name="file name" code="5016" type="text" description="The name of the color theme file."/>
		</command>
		<command name="load theme effect scheme" code="sDRwlTES" description="Loads the effects scheme of a Microsoft Office theme from a file">
			<direct-parameter type="theme effect scheme"/>
			<parameter name="file name" code="5015" type="text" description="The name of the effect scheme file."/>
		</command>
		<command name="load theme font scheme" code="sDRwlTFS" description="Loads the font scheme of a Microsoft Office theme from a file.">
			<direct-parameter type="theme font scheme"/>
			<parameter name="file name" code="5015" type="text" description="The name of the font scheme file."/>
		</command>
		<command name="one color gradient" code="sDRw1079" description="Sets the specified fill to a one-color gradient.">
			<direct-parameter type="fill format"/>
			<parameter name="gradient style" code="XgSy" type="MsoGradientStyle" description="The gradient style."/>
			<parameter name="variant" code="5008" type="integer" description="The gradient variant. Can be a value from 1 to 4, corresponding to the four variants on the gradient tab in the fill effects dialog box. If Style is from center gradient, this argument can be either 1 or 2."/>
			<parameter name="degree" code="5009" type="real" description="The gradient degree. Can be a value from 0.0, dark to 1.0, light."/>
		</command>
		<command name="patterned" code="sDRw1080" description="Sets the specified fill to a pattern.">
			<direct-parameter type="fill format"/>
			<parameter name="pattern" code="1028" type="MsoPatternType" description="The pattern to be used for the specified fill."/>
		</command>
		<command name="pick up" code="sDRw2342" description="Copies the formatting of the specified shape. Use the apply method to apply the copied formatting to another shape.">
			<direct-parameter type="shape"/>
		</command>
		<command name="preset drop" code="sDRw1006" description="Specifies whether the callout line attaches to the top, bottom, or center of the callout text box or whether it attaches at a point that's a specified distance from the top or bottom of the text box.">
			<direct-parameter type="4037"/>
			<parameter name="drop type" code="5004" type="MsoCalloutDropType" description="The starting position of the callout line relative to the text bounding box."/>
		</command>
		<command name="preset gradient" code="sDRw1081" description="Sets the specified fill to a preset gradient.">
			<direct-parameter type="fill format"/>
			<parameter name="gradient style" code="XgSy" type="MsoGradientStyle" description="Specifies the gradient style."/>
			<parameter name="variant" code="5008" type="integer" description="The gradient variant. Can be a value from 1 to 4, corresponding to the four variants on the gradient tab in the fill effects dialog box. If Style is from center gradient, this argument can be either 1 or 2."/>
			<parameter name="preset gradient type" code="5010" type="MsoPresetGradientType" description="The gradient type."/>
		</command>
		<command name="preset textured" code="sDRw1082" description="Sets the specified fill to a preset texture.">
			<direct-parameter type="fill format"/>
			<parameter name="preset texture" code="5011" type="MsoPresetTexture" description="The preset texture."/>
		</command>
		<command name="reroute connections" code="sDRw2343" description="Reroutes connectors so that they take the shortest possible path between the shapes they connect. To do this, the reroute connections method may detach the ends of a connector and reattach them to different connecting sites on the connected shapes.">
			<direct-parameter type="shape"/>
		</command>
		<command name="reset rotation" code="sDRw1065" description="Resets the extrusion rotation around the x-axis and the y-axis to zero so that the front of the extrusion faces forward. This method doesn't reset the rotation around the z-axis.">
			<direct-parameter type="threeD format"/>
		</command>
		<command name="save as picture" code="sDRwOSaP" description="Saves the shape in the requested file using the stated graphic format">
			<direct-parameter type="shape"/>
			<parameter name="picture type" code="5016" type="MsoPictureType" optional="yes" description="Specifies the graphic format in which the file is saved"/>
			<parameter name="file name" code="5015" type="text" optional="yes" description="The name and path for the picture being saved"/>
		</command>
		<command name="save theme color scheme" code="sDRwsTCS" description="Saves the color scheme of a Microsoft Office theme to a file.">
			<direct-parameter type="theme color scheme"/>
			<parameter name="file name" code="5016" type="text" description="The name of the color theme file."/>
		</command>
		<command name="save theme font scheme" code="sDRwsTFS" description="Saves the font scheme of a Microsoft Office theme to a file.">
			<direct-parameter type="theme font scheme"/>
			<parameter name="file name" code="5015" type="text" description="The name of the font scheme file."/>
		</command>
		<command name="scale height" code="sDRwsScH" description="Scales the height of the shape by a specified factor.">
			<direct-parameter type="picture"/>
			<parameter name="factor" code="ep01" type="real" description="Specifies the ratio between the height of the shape after you resize it and the current or original height. For example, to make a rectangle 50 percent larger, specify 1.5 for this argument."/>
			<parameter name="relative to original size" code="ep02" type="boolean" description="Set to true to scale the shape relative to its original size. False to scale it relative to its current size."/>
			<parameter name="scale" code="ep03" type="MsoScaleFrom" optional="yes" description="Specifies which part of the shape retains its position when the shape is scaled."/>
		</command>
		<command name="scale width" code="sDRwsScW" description="Scales the width of the shape by a specified factor. For pictures, you can indicate whether you want to scale the shape relative to the original size or relative to the current size.">
			<direct-parameter type="picture"/>
			<parameter name="factor" code="ep01" type="real" description="Specifies the ratio between the width of the shape after you resize it and the current or original width. For example, to make a rectangle 50 percent larger, specify 1.5 for this argument."/>
			<parameter name="relative to original size" code="ep02" type="boolean" description="Set to true to scale the shape relative to its original size. False to scale it relative to its current size. You can specify true for this argument only if the specified shape is a picture."/>
			<parameter name="scale" code="ep03" type="MsoScaleFrom" optional="yes" description="Specifies which part of the shape retains its position when the shape is scaled."/>
		</command>
		<command name="send to back" code="sDRw1988" description="Sends the object to the back of the z-order.">
			<direct-parameter type="4033"/>
		</command>
		<command name="set bullet picture" code="sDRwBlPc" description="Sets the graphics file to be used for bullets in a bulleted list.">
			<direct-parameter type="bullet format"/>
			<parameter name="FileName" code="xpBF" type="text"/>
		</command>
		<command name="set shapes default properties" code="sDRw2346" description="Applies the formatting for the specified shape to the default shape. Shapes created after this method has been used will have this formatting applied by default.">
			<direct-parameter type="shape"/>
		</command>
		<command name="solid" code="sDRw1083" description="Sets the specified fill to a uniform color. Use this method to convert a gradient, textured, patterned, or background fill back to a solid fill.">
			<direct-parameter type="fill format"/>
		</command>
		<command name="toggle vertical text" code="sDRw1052">
			<direct-parameter type="word art format"/>
		</command>
		<command name="two color gradient" code="sDRw1084" description="Sets the specified fill to a two-color gradient.">
			<direct-parameter type="fill format"/>
			<parameter name="gradient style" code="XgSy" type="MsoGradientStyle" description="The gradient style."/>
			<parameter name="variant" code="5008" type="integer" description="The gradient variant. Can be a value from 1 to 4, corresponding to the four variants on the gradient tab in the fill effects dialog box. If Style is from center gradient, this argument can be either 1 or 2."/>
		</command>
		<command name="ungroup" code="sDRw1624">
			<direct-parameter type="shape text frame"/>
		</command>
		<command name="user picture" code="sDRw1085" description="Fills the specified shape with one large image.">
			<direct-parameter type="fill format"/>
			<parameter name="picture file" code="5012" type="text" description="The name of the picture file."/>
		</command>
		<command name="user textured" code="sDRw1086" description="Fills the specified shape with small tiles of an image.">
			<direct-parameter type="fill format"/>
			<parameter name="texture file" code="5013" type="text" description="The name of the picture file."/>
		</command>
		<command name="z order" code="sDRw1990" description="Moves the specified shape in front of or behind other shapes in the collection, that is, changes the shape's position in the z-order.">
			<direct-parameter type="shape"/>
			<parameter name="z order command" code="5344" type="MsoZOrderCmd" description="Specifies where to move the specified shape relative to the other shapes."/>
		</command>
		<class name="adjustment" code="mAdj" plural="adjustments">
			<property name="adjustment_value" code="mAjv" type="real"/>
		</class>
		<class name="arc" code="Xarc" description="Represents an arc graphic." plural="arcs">
			<element type="character"/>
			<property name="add indent" code="1514" type="integer" description="Returns or sets if text is automatically indented when the text alignment in a cell is set to equal distribution either horizontally or vertically."/>
			<property name="auto scale font" code="1992" type="boolean" description="Returns or sets  if the text in the object changes font size when the object size changes."/>
			<property name="auto size" code="1993" type="integer" description="Returns or sets if the size of the specified object is changed automatically to fit text within its boundaries."/>
			<property name="border" code="X251" type="border" access="r" description="Returns a border object that represents the border of the object. "/>
			<property name="bottom right cell" code="1983" type="integer" access="r" description="Returns the bottom right cell of the range the control is occupying."/>
			<property name="caption" code="1108" type="integer" description="Returns or sets the caption for this object."/>
			<property name="entry_index" code="MSix" type="integer" access="r" description="Returns the index number of the object within the elements of the parent object."/>
			<property name="font object" code="XftO" type="integer" access="r" description="Returns a font object that represents the font of the specified object."/>
			<property name="formula" code="1562" type="integer" description="Returns or sets the object's formula, in A1-style notation and in the language of the macro."/>
			<property name="height" code="hght" type="integer" description="Returns or set the height of the object."/>
			<property name="horizontal alignment" code="1575" type="integer" description="Returns or sets the horizontal alignment for the object."/>
			<property name="interior object" code="XitO" type="integer" access="r" description="Returns an interior object that represents the interior of the specified object."/>
			<property name="left position" code="plft" type="integer" description="Returns or sets the position of the specified object, in points."/>
			<property name="locked" code="1584" type="integer" description="Returns or sets if the object is locked, if false the object can be modified when the sheet is protected."/>
			<property name="locked text" code="1994" type="integer" description="Returns or sets whether the control's text is locked for editing."/>
			<property name="name" code="pnam" type="integer" description="Returns or sets the name of the object."/>
			<property name="on action" code="BCOa" type="text" description="Returns or sets the name of a string of AppleScript commands that will be executed when the object is clicked on. Please note that if AppleScript commands are set they will not be saved with the document."/>
			<property name="orientation" code="1596" type="integer" description="May also be a number value from -90 to 90 degrees."/>
			<property name="placement" code="1986" type="integer" description="Returns or sets how the object is placed on the worksheet."/>
			<property name="print object" code="1987" type="integer" description="Returns or sets if this object is printed."/>
			<property name="reading order" code="1639" type="XLDefaultSheetDir" description="Returns or sets the reading order for the specified object."/>
			<property name="string value" code="XRgt" type="integer" description="Returns or sets the text of the specified object."/>
			<property name="top" code="ptop" type="integer" description="Returns the top position of the specified object, in points."/>
			<property name="top left cell" code="1989" type="integer" access="r" description="Returns a range object that represents the cell that lies under the upper-left corner of the specified object. "/>
			<property name="vertical alignment" code="1631" type="integer" description="Returns or sets the vertical alignment of the object."/>
			<property name="visible" code="pvis" type="integer" description="Returns or sets if the object is visible."/>
			<property name="width" code="pwid" type="integer" description="Returns or sets  the width of the object."/>
			<property name="z order position" code="2364" type="integer" access="r" description="Returns the z-order position of the object."/>
		</class>
		<class name="bullet format" code="xbf2">
			<property name="bullet character" code="BtCh" type="text" description="Returns or sets the Unicode character value that is used for bullets in the specified text."/>
			<property name="bullet font" code="OblF" type="shape font" access="r" description="Returns a font object that represents character formatting for a bullet format object."/>
			<property name="bullet number" code="BlNm" type="integer" access="r" description="Returns the bullet number of a paragraph."/>
			<property name="bullet start value" code="bSvu" type="integer" description="Gets or sets the beginning value of a bulleted list."/>
			<property name="bullet style" code="bStl" type="MsoNumberedBulletStyle" description="Returns or sets a constant that represents the style of a bullet."/>
			<property name="bullet type" code="BLty" type="MsoBulletType" description="Returns or sets a constant that represents the type of bullet."/>
			<property name="relative size" code="BRlS" type="real" description="Returns or sets the bullet size relative to the size of the first text character in the paragraph."/>
			<property name="use text color" code="ButC" type="boolean" description="Determines whether the specified bullets are set to the color of the first text character in the paragraph."/>
			<property name="use text font" code="bUtf" type="boolean" description="Determines whether the specified bullets are set to the font of the first text character in the paragraph."/>
			<property name="visible" code="pvis" type="boolean" description="Returns or sets a value that specifies whether the bullet is visible."/>
		</class>
		<class name="callout format" code="X101" description="Contains properties and methods that apply to line callouts." plural="callout formats">
			<property name="accent" code="1007" type="boolean" description="Returns or sets if a vertical accent bar separates the callout text from the callout line."/>
			<property name="angle" code="1008" type="MsoCalloutAngleType" description="Returns or sets the angle of the callout line. If the callout line contains more than one line segment, this property returns or sets the angle of the segment that is farthest from the callout text box."/>
			<property name="auto attach" code="1009" type="boolean" description="Returns or sets if the place where the callout line attaches to the callout text box changes depending on whether the origin of the callout line, where the callout points to, is to the left or right of the callout text box."/>
			<property name="auto length" code="1010" type="boolean" access="r" description="Returns if the length of the callout line is automatically set. Use the automatic length method to set this property to true, and use the custom length method to set this property to false."/>
			<property name="border" code="X251" type="boolean" description="Returns or sets whether the text in the specified callout is surrounded by a border."/>
			<property name="callout format length" code="1015" type="real" access="r" description="When the auto length property of the specified callout is set to false, the length property returns the length in points of the first segment of the callout line, the segment attached to the text callout box."/>
			<property name="callout format type" code="1016" type="MsoCalloutType" description="Returns or sets the callout type."/>
			<property name="drop" code="1012" type="real" access="r" description="For callouts with an explicitly set drop value, this property returns the vertical distance in points from the edge of the text bounding box to the place where the callout line attaches to the text box."/>
			<property name="drop type" code="1013" type="MsoCalloutDropType" access="r" description="Returns a value that indicates where the callout line attaches to the callout text box."/>
			<property name="gap" code="1014" type="real" description="Returns or sets the horizontal distance in points between the end of the callout line and the text bounding box."/>
		</class>
		<class name="callout" code="cD00" inherits="shape" plural="callouts">
			<property name="callout format" code="X101" type="callout format" access="r" description="Returns a connector format object that contains connector formatting properties."/>
			<property name="callout type" code="coTY" type="MsoCalloutType" access="r" description="Returns the type of callout."/>
		</class>
		<class name="connector format" code="X294" description="Contains properties and methods that apply to connectors. A connector is a line that attaches two other shapes at points called connection sites." plural="connector formats">
			<property name="begin connected" code="2381" type="boolean" access="r" description="Returns true if the beginning of the specified connector is connected to a shape."/>
			<property name="begin connected shape" code="2382" type="shape" access="r" description="Returns a shape object that represents the shape that the beginning of the specified connector is attached to."/>
			<property name="begin connection site" code="2383" type="integer" access="r" description="Returns an integer that specifies the connection site that the beginning of a connector is connected to."/>
			<property name="connector format type" code="2387" type="MsoConnectorType" description="Returns or sets the connector type."/>
			<property name="end connected" code="2384" type="boolean" access="r" description="Returns true if the end of the specified connector is connected to a shape."/>
			<property name="end connected shape" code="2385" type="shape" access="r" description="Returns a shape object that represents the shape that the end of the specified connector is attached to."/>
			<property name="end connection site" code="2386" type="integer" access="r" description="Returns an integer that specifies the connection site that the end of a connector is connected to."/>
		</class>
		<class name="fill format" code="X110" description="Represents fill formatting for a shape. A shape can have a solid, gradient, texture, pattern, picture, or semi-transparent fill." plural="fill formats">
			<property name="back color" code="1019" description="Returns or sets a RGB color that represents the background color for the specified fill or patterned line.">
				<type type="integer" list="yes"/>
			</property>
			<property name="back color theme index" code="fBCT" type="MsoThemeColorIndex" description="Returns or sets the specified fill background color."/>
			<property name="fill format type" code="1095" type="MsoFillType" access="r" description="Returns the shape fill format type."/>
			<property name="fore color" code="1027" description="Returns or sets a RGB color that represents the foreground color for the fill, line, or shadow.">
				<type type="integer" list="yes"/>
			</property>
			<property name="fore color theme index" code="fFCT" type="MsoThemeColorIndex" description="Returns or sets the specified foreground fill or solid color."/>
			<property name="gradient color type" code="1087" type="MsoGradientColorType" access="r" description="Returns the gradient color type for the specified fill."/>
			<property name="gradient degree" code="1088" type="real" access="r" description="Returns a value that indicates how dark or light a one-color gradient fill is. A value of zero means that black is mixed in with the shape's foreground color to form the gradient; a value of 1 means that white is mixed in. Values between 1 and zero blend."/>
			<property name="gradient style" code="XgSy" type="MsoGradientStyle" access="r" description="Returns the gradient style for the specified fill."/>
			<property name="gradient variant" code="1090" type="integer" access="r" description="Returns the gradient variant for the specified fill as an integer value from 1 to 4 for most gradient fills. If the gradient style is from center gradient, this property returns either 1 or 2."/>
			<property name="pattern" code="1028" type="MsoPatternType" access="r" description="Returns a value that represents the pattern applied to the specified fill or line."/>
			<property name="preset gradient type" code="1091" type="MsoPresetGradientType" access="r" description="Returns the preset gradient type for the specified fill."/>
			<property name="preset texture" code="1092" type="MsoPresetTexture" access="r" description="Returns the preset texture for the specified fill."/>
			<property name="rotate with object" code="SsRo" type="boolean" description="Returns or sets whether the fill rotates with the specified shape."/>
			<property name="texture alignment" code="FfTa" type="MsoTextureAlignment" description="Returns or sets the texture alignment for the specified object."/>
			<property name="texture horizontal scale" code="pTsX" type="real" description="Returns or sets the texture alignment for the specified object."/>
			<property name="texture name" code="1093" type="text" access="r" description="Returns the name of the custom texture file for the specified fill."/>
			<property name="texture offset X" code="pToX" type="real" description="Returns or sets the texture alignment for the specified object."/>
			<property name="texture offset Y" code="pToY" type="real" description="Returns or sets the texture alignment for the specified object."/>
			<property name="texture tile" code="FfTt" type="boolean" description="Returns the texture tile style for the specified fill."/>
			<property name="texture type" code="1094" type="MsoTextureType" access="r" description="Returns the texture type for the specified fill."/>
			<property name="texture vertical scale" code="pTsY" type="real" description="Returns or sets the texture alignment for the specified object."/>
			<property name="transparency" code="1030" type="real" description="Returns or sets the degree of transparency of the specified fill, shadow, or line as a value between 0.0, opaque, and 1.0, clear."/>
			<property name="visible" code="pvis" type="boolean" description="Returns or sets if the specified object, or the formatting applied to it, is visible."/>
		</class>
		<class name="glow format" code="DGoF" description="Represents the glow formatting for a shape or range of shapes">
			<property name="color" code="colr" description="Returns or sets the color for the specified glow format.">
				<type type="integer" list="yes"/>
			</property>
			<property name="color theme index" code="DThC" type="MsoThemeColorIndex" description="Returns or sets the color for the specified glow format."/>
			<property name="radius" code="GRad" type="real" description="Returns or sets the length of the radius for the specified glow format."/>
		</class>
		<class name="gradient stop" code="GrdS" description="Represents one gradient stop." plural="gradient stops">
			<property name="color" code="colr" description="Returns or sets the color for the specified the gradient stop.">
				<type type="integer" list="yes"/>
			</property>
			<property name="color theme index" code="DThC" type="MsoThemeColorIndex" description="Returns or sets the color for the specified gradient stop."/>
			<property name="position" code="posn" type="real" description="Returns or sets the position for the specified gradient stop expressed as a percent."/>
			<property name="transparency" code="1030" type="real" description="Returns or sets a value representing the transparency of the gradient fill expressed as a percent."/>
		</class>
		<class name="line format" code="X103" description="Represents line and arrowhead formatting. For a line, the line format object contains formatting information for the line itself; for a shape with a border, this object contains formatting information for the shape's border." plural="line formats">
			<property name="back color" code="1019" description="Returns or sets a RGB color that represents the background color for the specified fill or patterned line.">
				<type type="integer" list="yes"/>
			</property>
			<property name="back color theme index" code="fBCT" type="MsoThemeColorIndex" description="Returns or sets the background color for a patterned line."/>
			<property name="begin arrowhead length" code="1020" type="MsoArrowheadLength" description="Returns or sets the length of the arrowhead at the beginning of the specified line."/>
			<property name="begin arrowhead style" code="1021" type="MsoArrowheadStyle" description="Returns or sets the style of the arrowhead at the beginning of the specified line."/>
			<property name="begin arrowhead width" code="1022" type="MsoArrowheadWidth" description="Returns or sets the width of the arrowhead at the beginning of the specified line."/>
			<property name="dash style" code="1023" type="MsoLineDashStyle" description="Returns or sets the dash style for the specified line."/>
			<property name="end arrowhead length" code="1024" type="MsoArrowheadLength" description="Returns or sets the length of the arrowhead at the end of the specified line."/>
			<property name="end arrowhead style" code="1025" type="MsoArrowheadStyle" description="Returns or sets the style of the arrowhead at the end of the specified line."/>
			<property name="end arrowhead width" code="1026" type="MsoArrowheadWidth" description="Returns or sets the width of the arrowhead at the end of the specified line."/>
			<property name="fore color" code="1027" description="Returns or sets a RGB color that represents the foreground color for the fill, line, or shadow.">
				<type type="integer" list="yes"/>
			</property>
			<property name="fore color theme index" code="fFCT" type="MsoThemeColorIndex" description="Returns or sets the foreground color for the line."/>
			<property name="line style" code="XlnS" type="MsoLineStyle" description="Returns or sets the line format style."/>
			<property name="pattern" code="1028" type="MsoPatternType" description="Returns or sets a value that represents the pattern applied to the specified fill or line."/>
			<property name="transparency" code="1030" type="real" description="Returns or sets the degree of transparency of the specified fill, shadow, or line as a value between 0.0, opaque and 1.0, clear."/>
			<property name="visible" code="pvis" type="boolean" description="Returns or sets if the specified object, or the formatting applied to it, is visible."/>
			<property name="weight" code="1031" type="real" description="Returns or sets the thickness of the specified line in points."/>
		</class>
		<class name="line" code="Xlne" description="Represents a line graphic object." plural="lines">
			<property name="arrowhead length" code="2025" type="XlArrowHeadLength" description="Returns or sets the length of an arrowhead"/>
			<property name="arrowhead style" code="2026" type="XlArrowHeadStyle" description="Returns or sets the style of an arrowhead."/>
			<property name="arrowhead width" code="2027" type="XlArrowHeadWidth" description="Returns or sets the width of an arrowhead."/>
			<property name="border" code="X251" type="border" access="r" description="Returns a border object that represents the border of the object. "/>
			<property name="bottom right cell" code="1983" type="range" access="r" description="Returns the bottom right cell of the range the control is occupying."/>
			<property name="entry_index" code="MSix" type="integer" access="r" description="Returns the index number of the object within the elements of the parent object."/>
			<property name="height" code="hght" type="real" description="Returns or set the height of the object."/>
			<property name="left position" code="plft" type="real" description="Returns or sets the position of the specified object, in points."/>
			<property name="locked" code="1584" type="boolean" description="Returns or sets if the object is locked, if false the object can be modified when the sheet is protected."/>
			<property name="name" code="pnam" type="text" description="Returns or sets the name of the object."/>
			<property name="on action" code="BCOa" type="text" description="Returns or sets the name of a string of AppleScript commands that will be executed when the object is clicked on. Please note that if AppleScript commands are set they will not be saved with the document."/>
			<property name="placement" code="1986" type="XlPlacement" description="Returns or sets how the object is placed on the worksheet."/>
			<property name="print object" code="1987" type="boolean" description="Returns or sets if this object is printed."/>
			<property name="top" code="ptop" type="real" description="Returns the top position of the specified object, in points."/>
			<property name="top left cell" code="1989" type="range" access="r" description="Returns a range object that represents the cell that lies under the upper-left corner of the specified object. "/>
			<property name="visible" code="pvis" type="boolean" description="Returns or sets if the object is visible."/>
			<property name="width" code="pwid" type="real" description="Returns or sets  the width of the object."/>
			<property name="z order position" code="2364" type="integer" access="r" description="Returns the z-order position of the object."/>
		</class>
		<class name="major theme font" code="1ThF" description="Represents a container for the font schemes of a Microsoft Office theme." inherits="theme font" plural="major theme fonts"/>
		<class name="minor theme font" code="2ThF" description="Represents a container for the font schemes of a Microsoft Office theme." inherits="theme font" plural="minor theme fonts"/>
		<class name="office theme" code="DOfT" description="Represents a Microsoft Office theme.">
			<property name="theme color scheme" code="DTcS" type="theme color scheme" access="r" description="Returns the color scheme of a Microsoft Office theme."/>
			<property name="theme effect scheme" code="DTeS" type="theme effect scheme" access="r" description="Returns the effects scheme of a Microsoft Office theme."/>
			<property name="theme font scheme" code="DTfS" type="theme font scheme" access="r" description="Returns the font scheme of a Microsoft Office theme."/>
		</class>
		<class name="oval" code="XOvl" description="Represents an oval graphic." plural="ovals">
			<element type="character"/>
			<property name="add indent" code="1514" type="integer" description="Returns or sets if text is automatically indented when the text alignment in a cell is set to equal distribution either horizontally or vertically."/>
			<property name="auto scale font" code="1992" type="boolean" description="Returns or sets  if the text in the object changes font size when the object size changes."/>
			<property name="auto size" code="1993" type="integer" description="Returns or sets if the size of the specified object is changed automatically to fit text within its boundaries."/>
			<property name="border" code="X251" type="border" access="r" description="Returns a border object that represents the border of the object. "/>
			<property name="bottom right cell" code="1983" type="integer" access="r" description="Returns the bottom right cell of the range the control is occupying."/>
			<property name="caption" code="1108" type="integer" description="Returns or sets the caption for this object."/>
			<property name="entry_index" code="MSix" type="integer" access="r" description="Returns the index number of the object within the elements of the parent object."/>
			<property name="font object" code="XftO" type="integer" access="r" description="Returns a font object that represents the font of the specified object."/>
			<property name="formula" code="1562" type="integer" description="Returns or sets the object's formula, in A1-style notation and in the language of the macro."/>
			<property name="height" code="hght" type="integer" description="Returns or set the height of the object."/>
			<property name="horizontal alignment" code="1575" type="integer" description="Returns or sets the horizontal alignment for the object."/>
			<property name="interior object" code="XitO" type="integer" access="r" description="Returns an interior object that represents the interior of the specified object."/>
			<property name="left position" code="plft" type="integer" description="Returns or sets the position of the specified object, in points."/>
			<property name="locked" code="1584" type="integer" description="Returns or sets if the object is locked, if false the object can be modified when the sheet is protected."/>
			<property name="locked text" code="1994" type="integer" description="Returns or sets whether the control's text is locked for editing."/>
			<property name="name" code="pnam" type="integer" description="Returns or sets the name of the object."/>
			<property name="on action" code="BCOa" type="text" description="Returns or sets the name of a string of AppleScript commands that will be executed when the object is clicked on. Please note that if AppleScript commands are set they will not be saved with the document."/>
			<property name="orientation" code="1596" type="integer" description="May also be a number value from -90 to 90 degrees."/>
			<property name="placement" code="1986" type="integer" description="Returns or sets how the object is placed on the worksheet."/>
			<property name="print object" code="1987" type="integer" description="Returns or sets if this object is printed."/>
			<property name="reading order" code="1639" type="XLDefaultSheetDir" description="Returns or sets the reading order for the specified object."/>
			<property name="shadow" code="shad" type="integer" description="Returns or sets if the object has a shadow."/>
			<property name="string value" code="XRgt" type="integer" description="Returns or sets the text of the specified object."/>
			<property name="top" code="ptop" type="integer" description="Returns the top position of the specified object, in points."/>
			<property name="top left cell" code="1989" type="integer" access="r" description="Returns a range object that represents the cell that lies under the upper-left corner of the specified object. "/>
			<property name="vertical alignment" code="1631" type="integer" description="Returns or sets the vertical alignment of the object."/>
			<property name="visible" code="pvis" type="integer" description="Returns or sets if the object is visible."/>
			<property name="width" code="pwid" type="integer" description="Returns or sets  the width of the object."/>
			<property name="z order position" code="2364" type="integer" access="r" description="Returns the z-order position of the object."/>
		</class>
		<class name="paragraph format" code="xpf2">
			<property name="alignment" code="1053" type="MsoParagraphAlignment" description="Returns or sets a value specifying the alignment of the paragraph."/>
			<property name="baseline alignment" code="BlAg" type="MsoBaselineAlignment" description="Returns or sets a constant that represents the vertical position of fonts in a paragraph."/>
			<property name="bullet" code="xbf2" type="bullet format" access="r" description="Returns a bullet format object for the paragraph."/>
			<property name="east asian line break level" code="FelB" type="boolean" description="Returns or sets the East Asian line break control level for the specified paragraph."/>
			<property name="first line indent" code="fLIn" type="real" description="Returns or sets the value, in points, for a first line or hanging indent."/>
			<property name="hanging punctuation" code="Hfpu" type="boolean" description="Determines whether hanging punctuation is enabled for the specified paragraphs."/>
			<property name="indent level" code="1576" type="integer" description="Returns or sets a value representing the indent level assigned to text in the selected paragraph."/>
			<property name="left indent" code="IndL" type="real" description="Returns or sets a value that represents the left indent value, in points, for the specified paragraphs."/>
			<property name="line rule after" code="lRAr" type="boolean" description="Determines whether line spacing after the last line in each paragraph is set to a specific number of points or lines."/>
			<property name="line rule before" code="lRB4" type="boolean" description="Determines whether line spacing before the first line in each paragraph is set to a specific number of points or lines."/>
			<property name="line rule within" code="lRwI" type="boolean" description="Determines whether line spacing between base lines is set to a specific number of points or lines."/>
			<property name="right indent" code="IndR" type="real" description="Returns or sets the right indent, in points, for the specified paragraphs."/>
			<property name="space after" code="SpcA" type="real" description="Returns or sets the amount of spacing, in points, after the specified paragraph."/>
			<property name="space before" code="SpcB" type="real" description="Returns or sets the spacing, in points, before the specified paragraphs."/>
			<property name="space within" code="SpcW" type="real" description="Returns or sets the amount of space between base lines in the specified paragraph, in points or lines."/>
			<property name="text direction" code="txTD" type="mTxD" description="Returns or sets the text direction for the specified paragraph."/>
			<property name="word wrap" code="PfWW" type="boolean" description="Determines whether the application wraps the Latin text in the middle of a word in the specified paragraphs."/>
		</class>
		<class name="picture format" code="X106" description="Contains properties and methods that apply to pictures." plural="picture formats">
			<property name="brightness" code="1037" type="real" description="Returns or sets the brightness of the specified picture . The value for this property must be a number from 0.0, dimmest to 1.0, brightest."/>
			<property name="color type" code="1038" type="MsoPictureColorType" description="Returns or sets the type of color transformation applied to the specified picture."/>
			<property name="contrast" code="1039" type="real" description="Returns or sets the contrast for the specified picture. The value for this property must be a number from 0.0, the least contrast to 1.0, the greatest contrast."/>
			<property name="crop bottom" code="1040" type="real" description="Returns or sets the number of points that are cropped off the bottom of the specified picture."/>
			<property name="crop left" code="1041" type="real" description="Returns or sets the number of points that are cropped off the left side of the specified picture."/>
			<property name="crop right" code="1042" type="real" description="Returns or sets the number of points that are cropped off the right side of the specified picture."/>
			<property name="crop top" code="1043" type="real" description="Returns or sets the number of points that are cropped off the top of the specified picture."/>
			<property name="transparency color" code="1044" type="cRGBColor" description="Returns or sets the transparent color for the specified picture as aRGB color. For this property to take effect, the transparent background property must be set to true."/>
			<property name="transparent background" code="1045" type="boolean" description="Returns or sets if the parts of the picture that are defined with a transparent color actually appear transparent."/>
		</class>
		<class name="picture" code="cD04" inherits="shape" plural="pictures">
			<property name="file name" code="AFLN" type="text" access="r" description="Returns he name of the file that has the picture."/>
			<property name="link to file" code="l2Fl" type="boolean" access="r" description="Returns if the picture is lined to the file."/>
			<property name="picture format" code="X106" type="picture format" access="r" description="Returns a picture format object for this picture."/>
			<property name="save with document" code="SwFl" type="boolean" access="r" description="Returns if the picture should be saved with the document."/>
		</class>
		<class name="rectangle" code="XRct" description="Represents a rectangle graphic object." plural="rectangles">
			<element type="character"/>
			<property name="add indent" code="1514" type="integer" description="Returns or sets if text is automatically indented when the text alignment in a cell is set to equal distribution either horizontally or vertically."/>
			<property name="auto scale font" code="1992" type="boolean" description="Returns or sets  if the text in the object changes font size when the object size changes."/>
			<property name="auto size" code="1993" type="integer" description="Returns or sets if the size of the specified object is changed automatically to fit text within its boundaries."/>
			<property name="border" code="X251" type="border" access="r" description="Returns a border object that represents the border of the object. "/>
			<property name="bottom right cell" code="1983" type="integer" access="r" description="Returns the bottom right cell of the range the control is occupying."/>
			<property name="caption" code="1108" type="integer" description="Returns or sets the caption for this object."/>
			<property name="entry_index" code="MSix" type="integer" access="r" description="Returns the index number of the object within the elements of the parent object."/>
			<property name="font object" code="XftO" type="integer" access="r" description="Returns a font object that represents the font of the specified object."/>
			<property name="formula" code="1562" type="integer" description="Returns or sets the object's formula, in A1-style notation and in the language of the macro."/>
			<property name="height" code="hght" type="integer" description="Returns or set the height of the object."/>
			<property name="horizontal alignment" code="1575" type="integer" description="Returns or sets the horizontal alignment for the object."/>
			<property name="interior object" code="XitO" type="integer" access="r" description="Returns an interior object that represents the interior of the specified object."/>
			<property name="left position" code="plft" type="integer" description="Returns or sets the position of the specified object, in points."/>
			<property name="locked" code="1584" type="integer" description="Returns or sets if the object is locked, if false the object can be modified when the sheet is protected."/>
			<property name="locked text" code="1994" type="integer" description="Returns or sets whether the control's text is locked for editing."/>
			<property name="name" code="pnam" type="integer" description="Returns or sets the name of the object."/>
			<property name="on action" code="BCOa" type="text" description="Returns or sets the name of a string of AppleScript commands that will be executed when the object is clicked on. Please note that if AppleScript commands are set they will not be saved with the document."/>
			<property name="orientation" code="1596" type="integer" description="May also be a number value from -90 to 90 degrees."/>
			<property name="placement" code="1986" type="integer" description="Returns or sets how the object is placed on the worksheet."/>
			<property name="print object" code="1987" type="integer" description="Returns or sets if this object is printed."/>
			<property name="reading order" code="1639" type="XLDefaultSheetDir" description="Returns or sets the reading order for the specified object."/>
			<property name="rounded corners" code="2028" type="integer" description="Returns or sets if the rectangle has rounded corners"/>
			<property name="shadow" code="shad" type="integer" description="Returns or sets if the object has a shadow."/>
			<property name="string value" code="XRgt" type="integer" description="Returns or sets the text of the specified object."/>
			<property name="top" code="ptop" type="integer" description="Returns the top position of the specified object, in points."/>
			<property name="top left cell" code="1989" type="integer" access="r" description="Returns a range object that represents the cell that lies under the upper-left corner of the specified object. "/>
			<property name="vertical alignment" code="1631" type="integer" description="Returns or sets the vertical alignment of the object."/>
			<property name="visible" code="pvis" type="integer" description="Returns or sets if the object is visible."/>
			<property name="width" code="pwid" type="integer" description="Returns or sets  the width of the object."/>
			<property name="z order position" code="2364" type="integer" access="r" description="Returns the z-order position of the object."/>
		</class>
		<class name="reflection format" code="DReF" description="Represents the reflection effect in Office graphics.">
			<property name="reflection type" code="ReFT" type="MsoReflectionType" description="Returns or sets the type of the reflection format object."/>
		</class>
		<class name="ruler level" code="xRlL" plural="ruler levels">
			<property name="first margin" code="1Mar" type="real" description="Returns or sets the first-line indent for the specified outline level, in points."/>
			<property name="left margin" code="lMar" type="real" description="Returns or sets the left indent for the specified outline level, in points."/>
		</class>
		<class name="ruler" code="xRul" description="Represents the ruler for the text in the specified shape or for all text in the specified text style. Contains tab stops and the indentation settings for text outline levels.">
			<element type="ruler level"/>
		</class>
		<class name="shadow format" code="X107" description="Represents shadow formatting for a shape." plural="shadow formats">
			<property name="blur" code="1035" type="real" description="Returns or sets the blur, in points, of the specified shadow."/>
			<property name="fore color" code="1027" description="Returns or sets a RGB color that represents the foreground color for the fill, line, or shadow.">
				<type type="integer" list="yes"/>
			</property>
			<property name="fore color theme index" code="fFCT" type="MsoThemeColorIndex" description="Returns or sets the foreground color for the shadow format."/>
			<property name="obscured" code="1048" type="boolean" description="Returns or sets if the shadow of the specified shape appears filled in and is obscured by the shape, even if the shape has no fill. If false the shadow has no fill and the outline of the shadow is visible through the shape if the shape has no fill."/>
			<property name="offset X" code="1049" type="real" description="Returns or sets the horizontal offset in points of the shadow from the specified shape. A positive value offsets the shadow to the right of the shape; a negative value offsets it to the left."/>
			<property name="offset Y" code="1050" type="real" description="Returns or sets the vertical offset in points of the shadow from the specified shape. A positive value offsets the shadow below the shape; a negative value offsets it above the shape."/>
			<property name="rotate with shape" code="SsRs" type="boolean" description="Returns or sets whether to rotate the shadow when rotating the shape."/>
			<property name="shadow style" code="Swss" type="MsoShadowStyle" description="Returns or sets the style of shadow formatting to apply to a shape."/>
			<property name="shadow type" code="1051" type="MsoShadowType" description="Returns or sets the shape shadow type."/>
			<property name="size" code="SwSs" type="real" description="Returns or sets the width of the shadow."/>
			<property name="transparency" code="1030" type="real" description="Returns or sets the degree of transparency of the specified fill, shadow, or line as a value between 0.0, opaque and 1.0, clear."/>
			<property name="visible" code="pvis" type="boolean" description="Returns or sets if the specified object, or the formatting applied to it, is visible."/>
		</class>
		<class name="shape connector" code="cD01" inherits="shape" plural="shape connectors">
			<property name="connector format" code="X294" type="connector format" access="r" description="Returns a connector format object that contains connector formatting properties."/>
			<property name="connector type" code="CFTy" type="MsoConnectorType" access="r" description="Returns the connector type."/>
		</class>
		<class name="shape font" code="Fon2" description="Contains font attributes such as font name, size, and color, for an object.">
			<property name="ASCII name" code="fANm" type="text" description="Returns or sets the font used for Latin text; characters with character codes from 0 through 127."/>
			<property name="base line offset" code="fBlO" type="real" description="Returns or sets a value specifying the horizontaol offset of the selected font."/>
			<property name="bold" code="bold" type="boolean" description="Returns or sets a value specifying whether the font should be bold."/>
			<property name="caps type" code="fSCf" type="MsoTextCaps" description="Returns or sets a value specifying how the text should be capitalized."/>
			<property name="east asian name" code="FEnm" type="text" description="Returns or sets the font name used for Asian text."/>
			<property name="embedable" code="fEbD" type="boolean" access="r" description="Returns a value indicating whether the font can be embedded in a page."/>
			<property name="embedded" code="fEbF" type="boolean" access="r" description="Returns a value specifying whether the font is embedded in a page."/>
			<property name="equalize character height" code="fEQu" type="boolean" description="Returns or sets a value specifying whether the text should have the same horizontal height."/>
			<property name="fill format" code="X110" type="fill format" access="r" description="Returns a fill format object that contains fill formatting properties for the specified font."/>
			<property name="font color" code="Fclr">
				<type type="integer" list="yes"/>
			</property>
			<property name="font color theme index" code="FCTI" type="MsoThemeColorIndex" description="Returns or sets the color for the specified font."/>
			<property name="font name" code="1056" type="text" description="Returns or sets a value specifying the font to use for a selection."/>
			<property name="font name other" code="FNor" type="text" description="Returns or sets the font used for characters whose character set numbers are greater than 127."/>
			<property name="font size" code="ptsz" type="real" description="Returns or sets the font size."/>
			<property name="glow format" code="DGoF" type="glow format" access="r" description="Returns the formatting properties for a glow effect."/>
			<property name="highlight color" code="fHlC" description="Returns or sets the text highlight color for object.">
				<type type="integer" list="yes"/>
			</property>
			<property name="highlight color theme index" code="fHCT" type="MsoThemeColorIndex" description="Returns or sets the highlight color for the specified text."/>
			<property name="italic" code="ital" type="boolean" description="Returns or sets a value specifying whether the text for a selection is italic."/>
			<property name="kerning" code="fKrn" type="real" description="Returns or sets a value specifying the amount of spacing between text characters."/>
			<property name="line format" code="X103" type="line format" access="r" description="Returns a value specifiying the format of a line."/>
			<property name="reflection format" code="DReF" type="reflection format" access="r" description="Returns the formatting properties for a reflection effect."/>
			<property name="shadow format" code="X107" type="shadow format" access="r" description="Returns the value specifying the type of shadow effect for the selection of text."/>
			<property name="soft edge type" code="SeFT" type="MsoSoftEdgeType" description="Returns or sets the type soft edge format object."/>
			<property name="spacing" code="fSpc" type="real" description="Returns or sets a value specifying the spacing between characters in a selection of text."/>
			<property name="strike type" code="fSTf" type="MsoTextStrike" description="Returns or sets a value specifying the strike format used for a selection of text."/>
			<property name="subscript" code="sbsc" type="boolean" description="Returns or sets a value specifying that the selected text should be displayed a subscript."/>
			<property name="superscript" code="spsc" type="boolean" description="Returns or sets a value specifying that the selected text should be displayed a superscript."/>
			<property name="underline color" code="fUlC" description="Returns a value specifying the color of the underline for the selected text.">
				<type type="integer" list="yes"/>
			</property>
			<property name="underline color theme index" code="fUCT" type="MsoThemeColorIndex" description="Returns a value specifying the color of the underline for the selected text."/>
			<property name="underline style" code="fUls" type="MsoTextUnderlineType" description="Returns or sets a value specifying the text effect for the selected text."/>
			<property name="word art styles format" code="TEpE" type="MsoPresetTextEffect" description="Returns or sets a value specifying the text effect for the selected text."/>
		</class>
		<class name="shape line" code="cD12" description="The line shape uses begin line X, begin line Y, end line X, and end line Y when created" inherits="shape" plural="shape lines">
			<property name="begin line X" code="wLBx" type="real" description="Returns or sets the beginning X position of the line."/>
			<property name="begin line Y" code="wLBy" type="real" description="Returns or sets the beginning Y position of the line."/>
			<property name="end line X" code="wLex" type="real" description="Returns or sets the ending X position of the line."/>
			<property name="end line Y" code="wLey" type="real" description="Returns or sets the ending Y position of the line."/>
		</class>
		<class name="shape text frame" code="X295" description="Represents the shape text frame in a shape object. Contains the text in the text frame as well as the properties and methods that control the alignment and anchoring of the text frame." plural="shape text frames">
			<property name="has text" code="TFht" type="boolean" access="r" description="Returns whether the specified text frame has text."/>
			<property name="horizontal anchor" code="TfHA" type="MsoHorizontalAnchor"/>
			<property name="margin bottom" code="2371" type="real" description="Returns or sets the distance, in points, between the bottom of the text frame and the bottom of the inscribed rectangle of the shape that contains the text."/>
			<property name="margin left" code="2372" type="real" description="Returns or sets the distance, in points, between the left edge of the text frame and the left edge of the inscribed rectangle of the shape that contains the text."/>
			<property name="margin right" code="2373" type="real" description="Returns or sets the distance, in points, between the right edge of the text frame and the right edge of the inscribed rectangle of the shape that contains the text."/>
			<property name="margin top" code="2374" type="real" description="Returns or sets the distance, in points, between the top of the text frame and the top of the inscribed rectangle of the shape that contains the text."/>
			<property name="orientation" code="1596" type="MsoTextOrientation" description="Returns or sets the text orientation."/>
			<property name="path format" code="TfPF" type="MsoPathFormat" description="Returns or sets the path type for the specified text frame."/>
			<property name="ruler" code="xRul" type="ruler" access="r"/>
			<property name="text column" code="Tcl2" type="text column" access="r" description="Returns the text column object that represents the columns within the text frame."/>
			<property name="text range" code="TObj" type="text range" access="r"/>
			<property name="threeD format" code="X109" type="threeD format" access="r" description="Returns the 3-D-effect formatting properties for the specified text."/>
			<property name="vertical anchor" code="TfVA" type="MsoVerticalAnchor"/>
			<property name="warp format" code="TfWF" type="MsoWarpFormat" description="Returns or sets the warp type for the specified text frame."/>
			<property name="word wrap" code="PfWW" type="boolean" description="Returns or sets text break lines within or past the boundaries of the shape."/>
			<property name="wordart auto size" code="2427" type="MsoAutoSize" description="The size of the specified object that changes automatically to fit text within its boundaries."/>
		</class>
		<class name="shape textbox" code="cD07" inherits="shape" plural="shape textboxes">
			<property name="text orientation" code="XtOr" type="MsoTextOrientation" access="r" description="Returns the text orientation of the object."/>
		</class>
		<class name="shape" code="pShp" description="Represents an object in the drawing layer." plural="shapes">
			<element type="adjustment"/>
			<property name="alternative text" code="atxt" type="text" description="Returns or sets the descriptive alternative text string for a Shape object when the object is saved to a Web page."/>
			<property name="auto shape type" code="2349" type="MsoAutoShapeType" description="Returns or sets the shape type for the specified shape object, which must represent an auto-shape."/>
			<property name="background style" code="sHBs" type="MsoBackgroundStyleIndex" description="Returns or sets the background style."/>
			<property name="black white mode" code="2366" type="MsoBlackWhiteMode" description="Returns or sets a value that indicates how the specified shape appears when the presentation is viewed in black-and-white mode."/>
			<property name="bottom right cell" code="1983" type="range" access="r" description="Returns a range object that represents the cell that lies under the lower-right corner of the object."/>
			<property name="chart" code="X119" type="chart" access="r" description="Returns a chart object that represents the chart contained in the shape."/>
			<property name="child" code="sHCl" type="boolean" access="r" description="True if the shape is a child shape."/>
			<property name="connection site count" code="2351" type="integer" access="r" description="Returns the number of connection sites on the specified shape."/>
			<property name="connector" code="2352" type="boolean" access="r" description="Returns true if the specified shape is a connector."/>
			<property name="connector format" code="X294" type="connector format" access="r" description="Returns a connector format object that contains connector formatting properties if this shape is a connector."/>
			<property name="connector type" code="CFTy" type="MsoConnectorType" access="r" description="Returns the connector type if this shape is a connector."/>
			<property name="fill format" code="X110" type="fill format" access="r" description="Returns a fill format object that contains fill formatting properties for the specified shape."/>
			<property name="glow format" code="DGoF" type="glow format" access="r" description="Returns the formatting properties for a glow effect."/>
			<property name="has chart" code="fCrt" type="boolean" access="r" description="True if the specified shape has a chart."/>
			<property name="height" code="hght" type="real" description="Returns or sets the height of the object."/>
			<property name="horizontal flip" code="2355" type="boolean" access="r" description="Returns true if the specified shape is flipped around the horizontal axis."/>
			<property name="hyperlink" code="X239" type="hyperlink" access="r" description="Returns a hyperlink object that represents the hyperlink for the shape."/>
			<property name="left position" code="plft" type="real" description="Returns or sets the left position of the specified object, in points."/>
			<property name="line format" code="X103" type="line format" access="r" description="Returns a line format object for this shape."/>
			<property name="lock aspect ratio" code="2207" type="boolean" description="Returns or sets if the specified shape retains its original proportions when you resize it. If false, you can change the height and width of the shape independently of one another when you resize it."/>
			<property name="locked" code="1584" type="boolean" description="Returns or sets if the object is locked. If false, the object can be modified when the sheet is protected."/>
			<property name="name" code="pnam" type="text" description="Returns or sets the name of the object."/>
			<property name="parentgroup" code="prng" type="shape" access="r" description="Returns a Shape object that represents the common parent shape of a child shape or a range of child shapes."/>
			<property name="placement" code="1986" type="XlPlacement" description="Returns or sets how the object is placed on the worksheet."/>
			<property name="reflection format" code="DReF" type="reflection format" access="r" description="Returns the formatting properties for a reflection effect."/>
			<property name="rotation" code="1703" type="real" description="Returns or sets the rotation of the shape, in degrees."/>
			<property name="shadow format" code="X107" type="shadow format" access="r" description="Returns a shadow format object for this shape."/>
			<property name="shape on action" code="ShOa" type="text" description="Returns or sets the name of a string of AppleScript commands that will be executed when the object is clicked on. Please note that if AppleScript commands are set they will not be saved with the document."/>
			<property name="shape style" code="sHSs" type="MsoShapeStyleIndex" description="Returns or sets the shape style corresponding to the Quick Styles."/>
			<property name="shape text frame" code="X295" type="shape text frame" access="r" description="Returns a shape text frame object that contains the alignment and anchoring properties for the specified shape."/>
			<property name="shape type" code="2361" type="MsoShapeType" access="r" description="Returns the shape type."/>
			<property name="soft edge format" code="DSeF" type="soft edge format" access="r" description="Returns the formatting properties for a soft edge effect."/>
			<property name="text frame" code="X293" type="text frame" access="r" description="Returns a text frame object that contains the alignment and anchoring properties for the specified shape."/>
			<property name="threeD format" code="X109" type="threeD format" access="r" description="Returns a threeD format object that contains 3-D-effect formatting properties for the specified shape."/>
			<property name="top" code="ptop" type="real" description="Returns or sets the top position of the specified object, in points."/>
			<property name="top left cell" code="1989" type="range" access="r" description="Returns a range object that represents the cell that lies under the upper-left corner of the specified object."/>
			<property name="vertical flip" code="2362" type="boolean" access="r" description="Returns true if the specified shape is flipped around the vertical axis."/>
			<property name="visible" code="pvis" type="boolean" description="Returns or sets if the object is visible"/>
			<property name="width" code="pwid" type="real" description="Returns or sets  the width of the object."/>
			<property name="word art format" code="X108" type="word art format" access="r" description="Returns the formatting properties for a word art effect."/>
			<property name="z order position" code="2364" type="integer" access="r" description="Returns the position of the specified shape in the z-order. To set the shape's position in the z-order, use the z order method."/>
		</class>
		<class name="soft edge format" code="DSeF" description="Represents the soft edge formatting for a shape or range of shapes">
			<property name="soft edge type" code="SeFT" type="MsoSoftEdgeType" description="Returns or sets the type soft edge format object."/>
		</class>
		<class name="tab stop" code="Tab2" description="Represents a single tab stop." plural="tab stops">
			<property name="tab position" code="TSPn" type="real" description="Returns or sets the position of a tab stop relative to the left margin."/>
			<property name="tab stop type" code="TSty" type="MsoTabStopType" description="Returns or sets the type of the tab stop object."/>
		</class>
		<class name="text column" code="Tcl2" description="Represents a single text column.">
			<property name="column number" code="T2Nm" type="integer" description="Returns or sets the index of the text column object."/>
			<property name="spacing" code="fSpc" type="real" description="Returns or sets the spacing between text columns in a text column object."/>
			<property name="text direction" code="txTD" type="mTxD" description="Returns or sets the direction of text in the text column object."/>
		</class>
		<class name="text frame" code="X293" description="Represents the text frame in a shape object. Contains the text in the text frame as well as the properties and methods that control the alignment and anchoring of the text frame." plural="text frames">
			<element type="character"/>
			<property name="margin bottom" code="2371" type="real" description="Returns or sets the distance, in points, between the bottom of the text frame and the bottom of the inscribed rectangle of the shape that contains the text."/>
			<property name="margin left" code="2372" type="real" description="Returns or sets the distance, in points, between the left edge of the text frame and the left edge of the inscribed rectangle of the shape that contains the text."/>
			<property name="margin right" code="2373" type="real" description="Returns or sets the distance, in points, between the right edge of the text frame and the right edge of the inscribed rectangle of the shape that contains the text."/>
			<property name="margin top" code="2374" type="real" description="Returns or sets the distance, in points, between the top of the text frame and the top of the inscribed rectangle of the shape that contains the text."/>
			<property name="orientation" code="1596" type="MsoTextOrientation" description="Returns or sets the text orientation."/>
			<property name="reading order" code="1639" type="XLDefaultSheetDir" description="Returns or sets the reading order for the specified object."/>
		</class>
		<class name="theme color scheme" code="DTcS" description="Represents the color scheme of an Office Theme">
			<element type="theme color"/>
		</class>
		<class name="theme color" code="DThC" description="Represents a color in the color scheme of a Microsoft Office 2007 theme.">
			<property name="RGB" code="tRGB" description="Returns or sets a value of a color in the color scheme of a Microsoft Office theme.">
				<type type="integer" list="yes"/>
			</property>
			<property name="theme color scheme index" code="TCSi" type="MsoThemeColorSchemeIndex" access="r" description="Returns the index value a color scheme of a Microsoft Office theme."/>
		</class>
		<class name="theme effect scheme" code="DTeS" description="Represents the effect scheme of a Microsoft Office theme."/>
		<class name="theme font scheme" code="DTfS" description="Represents the font scheme of a Microsoft Office theme.">
			<element type="minor theme font"/>
			<element type="major theme font"/>
		</class>
		<class name="theme font" code="DThF" description="Represents a container for the font schemes of a Microsoft Office theme." plural="theme fonts">
			<property name="name" code="pnam" type="text" description="Returns or sets a value specifying the font to use for a selection."/>
		</class>
		<class name="threeD format" code="X109" description="Represents a shape's three-dimensional formatting." plural="threeD formats">
			<property name="Z distance" code="TfZd" type="real" description="Returns or sets a Single that represents the distance from the center of an object or text."/>
			<property name="bevel bottom depth" code="TfBd" type="real" description="Returns or sets the depth/height of the bottom bevel."/>
			<property name="bevel bottom inset" code="TfBi" type="real" description="Returns or sets the inset size/width for the bottom bevel."/>
			<property name="bevel bottom type" code="TfBb" type="MsoBevelType" description="Returns or sets the bevel type for the bottom bevel."/>
			<property name="bevel top depth" code="TfTd" type="real" description="Returns or sets the depth/height of the top bevel."/>
			<property name="bevel top inset" code="TfTi" type="real" description="Returns or sets the inset size/width for the top bevel."/>
			<property name="bevel top type" code="TfBt" type="MsoBevelType" description="Returns or sets the bevel type for the top bevel."/>
			<property name="contour color" code="TfCc" access="r" description="Returns or sets the color of the contour of an object or text.">
				<type type="integer" list="yes"/>
			</property>
			<property name="contour color theme index" code="cCTi" type="MsoThemeColorIndex" description="Returns or sets the color for the specified contour."/>
			<property name="contour width" code="TfCw" type="real" description="Returns or sets the width of the contour of an object or text."/>
			<property name="depth" code="1068" type="real" description="Returns or sets the depth of the shape's extrusion."/>
			<property name="extrusion color" code="1069" access="r" description="Returns or sets a RGB color that represents the color of the shape's extrusion.">
				<type type="integer" list="yes"/>
			</property>
			<property name="extrusion color theme index" code="eCTi" type="MsoThemeColorIndex" description="Returns or sets the color for the specified extrusion."/>
			<property name="extrusion color type" code="1070" type="MsoExtrusionColorType" description="Returns or sets a value that indicates what will determine the extrusion color."/>
			<property name="field of view" code="TfFv" type="real" description="Returns or sets the amount of perspective for an object or text."/>
			<property name="light angle" code="TfLa" type="real" description="Returns or sets the angle of the lighting."/>
			<property name="perspective" code="1071" type="boolean" description="Returns or sets if the extrusion appears in perspective that is, if the walls of the extrusion narrow toward a vanishing point. If false, the extrusion is a parallel, or orthographic, projection that is, if the walls don't narrow toward a vanishing point."/>
			<property name="preset camera" code="TfSp" type="MsoPresetCamera" access="r" description="Returns a constant that represents the camera preset."/>
			<property name="preset extrusion direction" code="1072" type="MsoPresetExtrusionDirection" access="r" description="Returns or sets the direction taken by the extrusion's sweep path leading away from the extruded shape, the front face of the extrusion."/>
			<property name="preset lighting direction" code="1073" type="MsoPresetLightingDirection" description="Returns or sets the position of the light source relative to the extrusion."/>
			<property name="preset lighting rig" code="TfPl" type="MsoLightRigType" description="Returns a constant that represents the lighting preset."/>
			<property name="preset lighting softness" code="1074" type="MsoPresetLightingSoftness" description="Returns or sets the intensity of the extrusion lighting."/>
			<property name="preset material" code="1075" type="MsoPresetMaterial" description="Returns or sets the extrusion surface material."/>
			<property name="preset threeD format" code="1076" type="MsoPresetThreeDFormat" access="r"/>
			<property name="project text" code="TfPt" type="boolean" description="Returns or sets whether text on a shape rotates with shape."/>
			<property name="rotation X" code="1077" type="real" description="Returns or sets the rotation of the extruded shape around the x-axis in degrees. A positive value indicates upward rotation; a negative value indicates downward rotation."/>
			<property name="rotation Y" code="1078" type="real" description="Returns or sets the rotation of the extruded shape around the y-axis, in degrees. A positive value indicates rotation to the left; a negative value indicates rotation to the right."/>
			<property name="rotation Z" code="TfZr" type="real" description="Returns or sets the rotation of the extruded shape around the z-axis, in degrees. A positive value indicates clockwise rotation; a negative value indicates anti-clockwise rotation."/>
			<property name="visible" code="pvis" type="boolean" description="Returns or sets if the specified object, or the formatting applied to it, is visible."/>
		</class>
		<class name="word art format" code="X108" description="Contains properties and methods that apply to WordArt objects." plural="word art formats">
			<property name="alignment" code="1053" type="MsoTextEffectAlignment" description="Returns or sets a constant that represents the alignment for the specified text effect."/>
			<property name="bold" code="bold" type="boolean" description="Returns if the text of the word art shape is formatted as bold."/>
			<property name="font name" code="1056" type="text" description="Returns or sets the font name of the font used by this word art shape."/>
			<property name="font size" code="ptsz" type="real" description="Returns or sets the font size of the font used by this word art shape."/>
			<property name="italic" code="ital" type="boolean" description="Returns if the text of the word art shape is formatted as italic."/>
			<property name="kerned pairs" code="1057" type="boolean" description="Returns or sets if character pairs in a WordArt object have been kerned. "/>
			<property name="normalized height" code="1058" type="boolean" description="Returns or sets if all characters, both uppercase and lowercase, in the specified WordArt are the same height."/>
			<property name="preset shape" code="1059" type="MsoPresetTextEffectShape" description="Returns or sets the shape of the specified WordArt."/>
			<property name="preset word art effect" code="4028" type="MsoPresetTextEffect" description="Returns or sets the style of the specified WordArt."/>
			<property name="rotated chars" code="1061" type="boolean" description="Returns or sets if characters in the specified WordArt are rotated 90 degrees relative to the WordArt's bounding shape. If false, characters in the specified WordArt retain their original orientation relative to the bounding shape."/>
			<property name="tracking" code="1062" type="real" description="Returns or sets the ratio of the horizontal space allotted to each character in the specified WordArt in relation to the width of the character. Can be a value from zero through 5."/>
			<property name="word art text" code="XWAt" type="text" description="Returns or sets the text associated with this word art shape."/>
		</class>
		<enumeration name="XlOartVerticalOverflow" code="VrOf">
			<enumerator name="overflow" code="0x02c20000"/>
			<enumerator name="clip" code="0x02c20001"/>
			<enumerator name="ellipsis" code="0x02c20002"/>
		</enumeration>
		<enumeration name="XlOartHorizontalOverflow" code="HzOf">
			<enumerator name="overflow" code="0x02c30000"/>
			<enumerator name="clip" code="0x02c30001"/>
		</enumeration>
		<enumeration name="custom drop" code="4035">
			<enumerator name="callout format" code="X101"/>
			<enumerator name="callout" code="cD00"/>
		</enumeration>
		<enumeration name="custom length" code="4036">
			<enumerator name="callout format" code="X101"/>
			<enumerator name="callout" code="cD00"/>
		</enumeration>
		<enumeration name="preset drop" code="4037">
			<enumerator name="callout format" code="X101"/>
			<enumerator name="callout" code="cD00"/>
		</enumeration>
		<enumeration name="check spelling" code="4034">
			<enumerator name="rectangle" code="XRct"/>
			<enumerator name="oval" code="XOvl"/>
			<enumerator name="arc" code="Xarc"/>
		</enumeration>
		<enumeration name="copy picture" code="4031">
			<enumerator name="line" code="Xlne"/>
			<enumerator name="rectangle" code="XRct"/>
			<enumerator name="oval" code="XOvl"/>
			<enumerator name="arc" code="Xarc"/>
			<enumerator name="shape" code="pShp"/>
		</enumeration>
		<enumeration name="cut" code="4032">
			<enumerator name="line" code="Xlne"/>
			<enumerator name="rectangle" code="XRct"/>
			<enumerator name="oval" code="XOvl"/>
			<enumerator name="arc" code="Xarc"/>
			<enumerator name="shape" code="pShp"/>
		</enumeration>
		<enumeration name="bring to front" code="4029">
			<enumerator name="line" code="Xlne"/>
			<enumerator name="rectangle" code="XRct"/>
			<enumerator name="oval" code="XOvl"/>
			<enumerator name="arc" code="Xarc"/>
		</enumeration>
		<enumeration name="send to back" code="4033">
			<enumerator name="line" code="Xlne"/>
			<enumerator name="rectangle" code="XRct"/>
			<enumerator name="oval" code="XOvl"/>
			<enumerator name="arc" code="Xarc"/>
		</enumeration>
		<enumeration name="copy object" code="4030">
			<enumerator name="line" code="Xlne"/>
			<enumerator name="rectangle" code="XRct"/>
			<enumerator name="oval" code="XOvl"/>
			<enumerator name="arc" code="Xarc"/>
			<enumerator name="shape" code="pShp"/>
		</enumeration>
	</suite>
	<suite name="Text Suite" code="sTXT" description="Classes and types for scripting text manipulations">
		<command name="add periods to" code="sTXTTRaP" description="Adds period punctuation to the end of the text contained in text range object.">
			<direct-parameter type="text range"/>
		</command>
		<command name="change case" code="sTXTTRcc" description="Changes the case of a text range object.">
			<direct-parameter type="text range"/>
			<parameter name="to" code="p#CC" type="MsoTextChangeCase"/>
		</command>
		<command name="copy text range" code="sTXTPytr" description="Copies a text range object.">
			<direct-parameter type="text range"/>
		</command>
		<command name="cut text range" code="sTXTpCtr" description="Removes a portion or all of the text from a range of text.">
			<direct-parameter type="text range"/>
		</command>
		<command name="get border" code="sTXTXBtr" description="Returns the specified border object.">
			<direct-parameter type="style"/>
			<parameter name="which border" code="wWbr" type="XlBordersIndex" description="This specifies which border object should be retrieved."/>
			<result type="border"/>
		</command>
		<command name="get rotated text bounds" code="sTXTTRRb" description="Returns back a list containing the four point of the text bounds as follows  {x1, y1}, {x2, y2}, {x3, y3}, {x4, y4} }">
			<direct-parameter type="text range"/>
			<result>
				<type type="any" list="yes"/>
			</result>
		</command>
		<command name="insert into" code="sTXT1578" description="Inserts a string preceding the selected characters.">
			<direct-parameter type="character"/>
			<parameter name="string" code="5039" type="text" description="The string to insert."/>
		</command>
		<command name="insert text text range" code="sTXTTRIt" description="Adds new text to the text range object.">
			<direct-parameter type="text range"/>
			<parameter name="insert where" code="epiP" type="MsoTextRangeInsertPosition" description="Sets whether the text will be inserted before or after the text range."/>
			<parameter name="new text" code="epNT" type="text" description="Contains the text to be inserted."/>
		</command>
		<command name="paste text range" code="sTXTPStr" description="Pastes the contents of the Clipboard into the text range object.">
			<direct-parameter type="text range"/>
		</command>
		<command name="remove periods from" code="sTXTTRrP" description="Removes all period punctuation from the text in the text range object.">
			<direct-parameter type="text range"/>
		</command>
		<class name="character" code="cha " description="Represents characters in an object that contains text." plural="characters">
			<property name="content" code="XtCt" type="text" description="Returns or sets the text for the specified object."/>
			<property name="font object" code="XftO" type="font" access="r" description="Returns a font object that represents the font of the specified object."/>
			<property name="phonetic characters" code="1979" type="text" description="Returns or sets the phonetic text in the specified characters object."/>
		</class>
		<class name="font" code="X111" description="Contains font attributes, such as font name, size, and color, for an object." plural="fonts">
			<property name="bold" code="bold" type="boolean" description="Returns or sets if the font is formatted as bold."/>
			<property name="color" code="colr" description="Returns or sets the color for the font.">
				<type type="integer" list="yes"/>
			</property>
			<property name="font background" code="XfBg" type="XlBackground" description="Returns or sets the text background type."/>
			<property name="font color index" code="XfcI" type="XlColorIndex" description="Returns or sets the color index of the font."/>
			<property name="font size" code="ptsz" type="integer" description="Returns or sets the font size."/>
			<property name="font style" code="1099" type="text" description="Returns or sets the font style."/>
			<property name="italic" code="ital" type="boolean" description="Returns or sets if the font is formatted as italic."/>
			<property name="name" code="pnam" type="text" description="Returns or sets the font name associated with this font object."/>
			<property name="outline font" code="1100" type="boolean" description="Returns or sets if the specified font is formatted as outline."/>
			<property name="shadow" code="shad" type="boolean" description="Returns or sets if the specified font is formatted as shadowed."/>
			<property name="strikethrough" code="strk" type="boolean" description="Returns or sets if the font is formatted as strikethrough text."/>
			<property name="subscript" code="sbsc" type="boolean" description="Returns or sets if the font is formatted as subscript."/>
			<property name="superscript" code="spsc" type="boolean" description="Returns or sets if the font is formatted as superscript."/>
			<property name="theme color" code="DThC" type="XlThemeColor" description="Returns or sets the theme color in the applied color scheme that is associated with the specified object."/>
			<property name="theme font index" code="2550" type="XlThemeFont" description="Returns or sets the theme font in the applied font scheme that is associated with the specified object."/>
			<property name="tint and shade" code="2535" type="real" description="Returns or sets a Single that lightens or darkens a color."/>
			<property name="underline" code="undl" type="XlUnderlineStyle" description="Returns or sets the type of underline applied to the font."/>
		</class>
		<class name="paragraph" code="cpar" inherits="text range" plural="paragraphs"/>
		<class name="sentence" code="csen" inherits="text range" plural="sentences"/>
		<class name="style" code="X129" description="Represents a style description for a range." plural="styles">
			<property name="add indent" code="1514" type="boolean" description="Returns or sets if text is automatically indented when the text alignment in a cell is set to equal distribution either horizontally or vertically. "/>
			<property name="built in" code="pBtN" type="boolean" access="r" description="Returns true if the style is a built-in style."/>
			<property name="font object" code="XftO" type="font" access="r" description="Returns the font object associated with this style."/>
			<property name="formula hidden" code="1565" type="boolean" description="Returns or sets if the formula will be hidden when the worksheet is protected."/>
			<property name="horizontal alignment" code="1575" type="XlHAlign" description="Returns or sets the horizontal alignment for the object."/>
			<property name="include alignment" code="1766" type="boolean" description="Returns or sets if the style includes the add indent, horizontal alignment, vertical alignment, wrap text, and orientation properties."/>
			<property name="include border" code="1767" type="boolean" description="Returns or sets if the style includes the color, color index, line style, and weight border properties."/>
			<property name="include font" code="1768" type="boolean" description="Returns or sets if the style includes the background, bold, color, color index, font style, italic, name, outline font, shadow, size, strikethrough, subscript, superscript, and underline font properties."/>
			<property name="include number" code="1769" type="boolean" description="Returns or sets if the style includes the number format property. "/>
			<property name="include patterns" code="1770" type="boolean" description="Returns or sets if the style includes the color, color index, invert if negative, pattern, pattern color, and pattern color index interior properties."/>
			<property name="include protection" code="1771" type="boolean" description="Returns or sets if the style includes the formula hidden and locked protection properties."/>
			<property name="indent level" code="1576" type="integer" description="Returns or sets the indent level for the style. Can be an integer from 0 to 15."/>
			<property name="interior object" code="XitO" type="interior" access="r" description="Returns an interior object that represents the interior of the specified style."/>
			<property name="locked" code="1584" type="boolean" description="Returns or sets if the range using this style is locked."/>
			<property name="merged cells" code="1588" type="boolean" description="Returns true if the style contains merged cells."/>
			<property name="name" code="pnam" type="text" access="r" description="Returns the name of the style."/>
			<property name="name local" code="1772" type="text" access="r" description="Returns the name of the style, in the language of the user."/>
			<property name="number format" code="1593" type="text" description="Returns or sets the format code for the object."/>
			<property name="number format local" code="1594" type="text" description="Returns or sets the format code for the object as a string in the language of the user."/>
			<property name="orientation" code="1596" type="XlOrientation" description="May also be a number value from -90 to 90 degrees."/>
			<property name="reading order" code="1639" type="XLDefaultSheetDir" description="Returns or sets the reading order for the specified object."/>
			<property name="shrink to fit" code="1618" type="boolean" description="Returns or sets if text automatically shrinks to fit in the available column width."/>
			<property name="value" code="DPVu" type="text" access="r" description="Return the name of the specified style."/>
			<property name="vertical alignment" code="1631" type="XlVAlign" description="Returns or sets the vertical alignment of the style."/>
			<property name="wrap text" code="1633" type="boolean" description="Returns or sets if Microsoft Excel wraps the text in the object."/>
		</class>
		<class name="text flow" code="cflo" inherits="text range" plural="text flows"/>
		<class name="text range character" code="TrCh" inherits="text range" plural="text range characters"/>
		<class name="text range line" code="TrLn" inherits="text range" plural="text range lines"/>
		<class name="text range" code="TObj" description="Represents the text frame in a shape object.">
			<element type="text range character"/>
			<element type="word"/>
			<element type="text range line"/>
			<element type="sentence"/>
			<element type="paragraph"/>
			<element type="text flow"/>
			<property name="bound height" code="TRbh" type="real" access="r" description="Returns the height, in points, of the text bounding box for the specified text."/>
			<property name="bound left" code="TRlb" type="real" access="r" description="Returns the left coordinate, in points, of the text bounding box for the specified text."/>
			<property name="bound top" code="TRtb" type="real" access="r" description="Returns the top coordinate, in points, of the text bounding box for the specified text."/>
			<property name="bound width" code="TRbw" type="real" access="r" description="Returns the width, in points, of the text bounding box for the specified text."/>
			<property name="content" code="XtCt" type="text" description="Returns or sets the text in a text range."/>
			<property name="font" code="X111" type="shape font" access="r" description="Returns the character formatting for the object."/>
			<property name="paragraph format" code="xpf2" type="paragraph format" access="r" description="Returns the paragraph formatting for the specified text."/>
			<property name="text length" code="TRln" type="integer" access="r" description="Returns the length of a text range."/>
			<property name="text start" code="TRst" type="integer" access="r" description="Returns the starting point of the specified text range."/>
		</class>
		<class name="word" code="cwor" inherits="text range" plural="words"/>
	</suite>
	<suite name="Table Suite" code="sTBL" description="Classes and types for scripting table manipulations">
		<command name="activate object" code="sTBLxACT" description="Activates the object.">
			<direct-parameter type="range"/>
		</command>
		<command name="add comment" code="sTBL1634" description="Adds a comment to the range.">
			<direct-parameter type="range"/>
			<parameter name="comment text" code="XCmT" type="text" optional="yes" description="The comment text."/>
			<result type="Excel comment" description="The newly created comment object."/>
		</command>
		<command name="advanced filter" code="sTBL1517" description="Filters or copies data from a list based on a criteria range. If the initial selection is a single cell, that cell's current region is used.">
			<direct-parameter type="range"/>
			<parameter name="action" code="5124" type="XlFilterAction" description="The filter operation."/>
			<parameter name="criteria range" code="5125" type="XlCategoryNames" optional="yes" description="The criteria range. If this argument is omitted, there are no criteria."/>
			<parameter name="copy to range" code="5126" type="XlCategoryNames" optional="yes" description="The destination range for the copied rows if action is filter copy. Otherwise, this argument is ignored."/>
			<parameter name="unique" code="5127" type="boolean" optional="yes" description="Set to true to filter unique records only. False to filter all records that meet the criteria. The default value is false."/>
		</command>
		<command name="apply names" code="sTBL1518" description="Applies names to the cells in the specified range.">
			<direct-parameter type="range"/>
			<parameter name="names" code="1183" optional="yes" description="A list of the names to be applied. If this argument is omitted, all names on the sheet are applied to the range.">
				<type type="text" list="yes"/>
			</parameter>
			<parameter name="ignore relative absolute" code="5128" type="boolean" optional="yes" description="Set to true to replace references with names, regardless of the reference types of either the names or references. False to replace absolute references with absolute names, relative references with relative names, and mixed references with mixed names."/>
			<parameter name="use row column names" code="5129" type="boolean" optional="yes" description="Set to true to use the names of row and column ranges that contain the specified range if names for the range cannot be found. False to ignore the omit column and omit row arguments. The default value is true."/>
			<parameter name="omit column" code="5130" type="boolean" optional="yes" description="Set to true to replace the entire reference with the row-oriented name. The column-oriented name can be omitted only if the referenced cell is in the same column as the formula and is within a row-oriented named range. The default value is true."/>
			<parameter name="omit row" code="5131" type="boolean" optional="yes" description="Set to true to replace the entire reference with the column-oriented name. The row-oriented name can be omitted only if the referenced cell is in the same row as the formula and is within a column-oriented named range. The default value is true."/>
			<parameter name="order" code="5132" type="XlApplyNamesOrder" optional="yes" description="Determines which range name is listed first when a cell reference is replaced by a row-oriented and column-oriented range name."/>
			<parameter name="append last" code="5133" type="boolean" optional="yes" description="Set to true to replace the definitions of the names in names and also replace the definitions of the last names that were defined. False to replace the definitions of the names in names only. The default value is false."/>
		</command>
		<command name="apply outline styles" code="sTBL1519" description="Applies outlining styles to the specified range.">
			<direct-parameter type="range"/>
		</command>
		<command name="auto outline" code="sTBL1526" description="Automatically creates an outline for the specified range. If the range is a single cell, Microsoft Excel creates an outline for the entire sheet. The new outline replaces any existing outline.">
			<direct-parameter type="range"/>
		</command>
		<command name="autocomplete" code="sTBL1521" description="Returns an AutoComplete match from the list. If there's no AutoComplete match or if more than one entry in the list matches the string to complete, this method returns an empty string.">
			<direct-parameter type="range"/>
			<parameter name="string" code="5039" type="text" description="The string to complete."/>
			<result type="text" description="The completed string."/>
		</command>
		<command name="autofill" code="sTBL1522" description="Performs an autofill on the cells in the specified range.">
			<direct-parameter type="range"/>
			<parameter name="destination" code="5134" type="XlCategoryNames" description="The cells to be filled. The destination must include the source range."/>
			<parameter name="type" code="5103" type="XlAutoFillType" optional="yes" description="Specifies the fill type."/>
		</command>
		<command name="autofilter range" code="sTBL1523" description="Filters a list using the AutoFilter.">
			<direct-parameter type="range"/>
			<parameter name="field" code="5135" type="integer" optional="yes" description="The integer offset of the field on which you want to base the filter, from the left of the list, the leftmost field is field one."/>
			<parameter name="criteria1" code="5136" type="any" optional="yes" description="The criteria, a string, for example, 101. Use = to find blank fields, or use &lt;&gt; to find nonblank fields. If this argument is omitted, the criteria is all."/>
			<parameter name="operator" code="5137" type="XlAutoFilterOperator" optional="yes" description="Specifies the operator to be used."/>
			<parameter name="criteria2" code="5138" type="any" optional="yes" description="The second criteria. Used with criteria1 and operator to construct compound criteria."/>
			<parameter name="visible drop down" code="5139" type="boolean" optional="yes" description="Set to true to display the AutoFilter drop-down arrow for the filtered field. False to hide the AutoFilter drop-down arrow for the filtered field."/>
		</command>
		<command name="autofit" code="sTBL1524" description="Changes the width of the specified column range or the height of the specified row range to achieve the best fit.">
			<direct-parameter type="range"/>
		</command>
		<command name="autoformat" code="sTBL1525" description="Automatically formats a range of cells, using a predefined format.">
			<direct-parameter type="range"/>
			<parameter name="format" code="5140" type="XlRangeAutoFormat" optional="yes" description="The range format to be used."/>
			<parameter name="include number" code="5141" type="boolean" optional="yes" description="Set to true to include number formats in the autoformat. The default value is true."/>
			<parameter name="font" code="5142" type="boolean" optional="yes" description="set to true to include font formats in the autoformat. The default value is true."/>
			<parameter name="alignment" code="1053" type="boolean" optional="yes" description="Set to true to include alignment in the autoformat. The default value is true."/>
			<parameter name="border" code="1011" type="boolean" optional="yes" description="Set to true to include border formats in the autoformat. The default value is true."/>
			<parameter name="pattern" code="1028" type="boolean" optional="yes" description="set to true to include pattern formats in the autoformat. The default value is true."/>
			<parameter name="width" code="pwid" type="boolean" optional="yes" description="Set to true to include column width and row height in the autoformat. The default value is true."/>
		</command>
		<command name="border around" code="sTBL1527" description="Adds a border to a range and sets the color, line style, and weight properties for the new border.">
			<direct-parameter type="range"/>
			<parameter name="line style" code="5143" type="XlLineStyle" optional="yes" description="The line style for the border."/>
			<parameter name="weight" code="1031" type="XlBorderWeight" optional="yes" description="The border weight."/>
			<parameter name="color index" code="1098" type="XlColorIndex" optional="yes" description="The border color, as an index into the current color palette."/>
			<parameter name="color" code="colr" optional="yes" description="The border color, as an RGB value.">
				<type type="integer" list="yes"/>
			</parameter>
		</command>
		<command name="calculate" code="sTBL1175" description="Calculates all open workbooks, a specific worksheet in a workbook, or a specified range of cells on a worksheet.">
			<direct-parameter type="range"/>
		</command>
		<command name="calculate row major order" code="sTBLXCcu" description="Calculates a specfied range of cells.">
			<direct-parameter type="range"/>
		</command>
		<command name="check spelling" code="sTBL1212" description="Checks the spelling of an object.">
			<direct-parameter type="range"/>
			<parameter name="custom dictionary" code="5081" type="text" optional="yes" description="A string that indicates the file name of the custom dictionary to examine if the word isn't found in the main dictionary. If this argument is omitted, the currently specified dictionary is used."/>
			<parameter name="ignore uppercase" code="5082" type="boolean" optional="yes" description="Set to true to have Microsoft Excel ignore words that are all uppercase. False to have Microsoft Excel check words that are all uppercase."/>
			<parameter name="always suggest" code="5145" type="boolean" optional="yes" description="Set to true to have Microsoft Excel display a list of suggested alternate spellings when an incorrect spelling is found. False to have Microsoft Excel wait for you to input the correct spelling."/>
		</command>
		<command name="clear Excel comments" code="sTBL1636" description="Clears all cell comments from the specified range.">
			<direct-parameter type="range"/>
		</command>
		<command name="clear contents" code="sTBL1531" description="Clears all cell comments from the specified range.">
			<direct-parameter type="range"/>
		</command>
		<command name="clear hyperlinks" code="sTBLXCcw" description="clear all the hyperlinks in a range"/>
		<command name="clear outline" code="sTBL1534" description="Clears the outline for the specified range.">
			<direct-parameter type="range"/>
		</command>
		<command name="clear range" code="sTBLXrgC" description="Clears the entire object.">
			<direct-parameter type="range"/>
		</command>
		<command name="clear range formats" code="sTBL1532" description="Clears the formatting of the object.">
			<direct-parameter type="range"/>
		</command>
		<command name="column differences" code="sTBL1535" description="Returns a range object that represents all the cells whose contents are different from the comparison cell in each column.">
			<direct-parameter type="range"/>
			<parameter name="comparison" code="5149" type="XlCategoryNames" description=". A single cell to compare to the specified range."/>
			<result type="range"/>
		</command>
		<command name="consolidate" code="sTBL1537" description="Consolidates data from multiple ranges on multiple worksheets into a single range on a single worksheet.">
			<direct-parameter type="range"/>
			<parameter name="sources" code="5150" optional="yes" description="The sources of the consolidation as a list of text reference strings in R1C1-style notation. The references must include the full path of sheets to be consolidated.">
				<type type="text" list="yes"/>
			</parameter>
			<parameter name="consolidation function" code="XcdF" type="XlConsolidationFunction" optional="yes" description="The consolidation function."/>
			<parameter name="top row" code="5152" type="boolean" optional="yes" description="Set to true to consolidate data based on column titles in the top row of the consolidation ranges. False to consolidate data by position. The default value is false."/>
			<parameter name="left column" code="5153" type="boolean" optional="yes" description="Set to true to consolidate data based on row titles in the left column of the consolidation ranges. False to consolidate data by position. The default value is false."/>
			<parameter name="create links" code="5154" type="boolean" optional="yes" description="Set to true to have the consolidation use worksheet links. False to have the consolidation copy the data. The default value is false."/>
		</command>
		<command name="copy picture" code="sTBL1539" description="Copies the selected object to the clipboard as a picture.">
			<direct-parameter type="range"/>
			<parameter name="appearance" code="5155" type="XlPictureAppearance" optional="yes" description="Specifies how the picture should be copied."/>
			<parameter name="format" code="5140" type="XlCopyPictureFormat" optional="yes" description="The format of the picture."/>
		</command>
		<command name="copy range" code="sTBLXcpR" description=" Copies the range to the specified range.">
			<direct-parameter type="range"/>
			<parameter name="destination" code="5134" type="range" optional="yes"/>
		</command>
		<command name="create names" code="sTBL1540" description="Creates names in the specified range, based on text labels in the sheet.">
			<direct-parameter type="range"/>
			<parameter name="top" code="ptop" type="boolean" optional="yes" description="Set to true to create names by using labels in the top row. The default value is false."/>
			<parameter name="left position" code="plft" type="boolean" optional="yes" description="Set to true to create names by using labels in the left column. The default value is false."/>
			<parameter name="bottom" code="5156" type="boolean" optional="yes" description="Set to true to create names by using labels in the bottom row. The default value is false."/>
			<parameter name="right" code="5157" type="boolean" optional="yes" description="Set to true to create names by using labels in the right column. The default value is false."/>
		</command>
		<command name="cut range" code="sTBL1543" description="Cuts the range to the clipboard.">
			<direct-parameter type="range"/>
			<parameter name="destination of cut" code="5134" type="XlCategoryNames" optional="yes"/>
		</command>
		<command name="data series" code="sTBL1544" description="Creates a data series in the specified range.">
			<direct-parameter type="range"/>
			<parameter name="rowcol" code="5158" type="XlRowCol" optional="yes" description="Can be the by rows or by columns to have the data series entered in rows or columns, respectively. If this argument is omitted, the size and shape of the range is used."/>
			<parameter name="data series type" code="XdsT" type="XlDataSeriesType" optional="yes" description="Sets the type of the data series.  The default is data series linear."/>
			<parameter name="date" code="5159" type="XlDataSeriesDate" optional="yes" description="If the data series type argument is chronological series, the date argument indicates the step date unit. The default value is series date day."/>
			<parameter name="increment" code="XBzo" type="integer" optional="yes" description="The step value for the series. The default value is 1."/>
			<parameter name="stop" code="XBny" type="integer" optional="yes" description="The stop value for the series. If this argument is omitted, Microsoft Excel fills to the end of the range."/>
			<parameter name="trend" code="1370" type="boolean" optional="yes" description="Set to true to create a linear trend or growth trend. False to create a standard data series. The default value is false."/>
		</command>
		<command name="data table" code="sTBLXdtF" description="Creates a data table based on input values and formulas that you define on a worksheet.">
			<direct-parameter type="range"/>
			<parameter name="row input" code="5214" type="cell" optional="yes" description="A single cell to use as the row input for your table."/>
			<parameter name="column input" code="5215" type="cell" optional="yes" description="A single cell to use as the column input for your table."/>
		</command>
		<command name="delete range" code="sTBLXdRg" description="Deletes the range">
			<direct-parameter type="range"/>
			<parameter name="shift" code="5164" type="XlDeleteShiftDirection" optional="yes" description="Specifies how to shift cells to replace deleted cells."/>
		</command>
		<command name="dirty" code="sTBLXCcv" description="Designates a range to be recalculated when the next recalculation occurs.">
			<direct-parameter type="range"/>
		</command>
		<command name="fill down" code="sTBL1555" description="Fills down from the top cell or cells in the specified range to the bottom of the range. The contents and formatting of the cell or cells in the top row of a range are copied into the rest of the rows in the range.">
			<direct-parameter type="range"/>
		</command>
		<command name="fill left" code="sTBL1556" description="Fills left from the rightmost cell or cells in the specified range. The contents and formatting of the cell or cells in the rightmost column of a range are copied into the rest of the columns in the range.">
			<direct-parameter type="range"/>
		</command>
		<command name="fill right" code="sTBL1557" description="Fills right from the leftmost cell or cells in the specified range. The contents and formatting of the cell or cells in the leftmost column of a range are copied into the rest of the columns in the range.">
			<direct-parameter type="range"/>
		</command>
		<command name="fill up" code="sTBL1558" description="Fills up from the bottom cell or cells in the specified range to the top of the range. The contents and formatting of the cell or cells in the bottom row of a range are copied into the rest of the rows in the range.">
			<direct-parameter type="range"/>
		</command>
		<command name="find" code="sTBL1395" description="Finds specific information in a range, and returns a range object that represents the first cell where that information is found. Returns nothing if no match is found. Doesn't affect the selection or the active cell.">
			<direct-parameter type="range"/>
			<parameter name="what" code="5166" type="text" description="The data to search for."/>
			<parameter name="after" code="5167" type="XlCategoryNames" optional="yes" description="The cell after which you want to search. Note that after must be a single cell in the range.  If this argument isn't specified, the search starts after the cell in the upper-left corner of the range."/>
			<parameter name="look in" code="5168" type="XlFindLookIn" optional="yes" description="Specifies where the find method should look."/>
			<parameter name="look at" code="5169" type="XlLookAt" optional="yes" description="Specifies the part that should be looked at."/>
			<parameter name="search order" code="5170" type="XlSearchOrder" optional="yes" description="Specifies if the search should be rows or columns."/>
			<parameter name="search direction" code="5171" type="XlSearchDirection" optional="yes" description="Specifies the search direction either next or previous."/>
			<parameter name="match case" code="5172" type="boolean" optional="yes" description="Set to true to make the search case sensitive."/>
			<parameter name="match byte" code="5173" type="boolean" optional="yes" description="Used only in the East Asian version of Microsoft Excel. Set to true to have double-byte characters match only double-byte characters. False to have double-byte characters match their single-byte equivalents."/>
			<result type="range" description="The range which the specified data was found."/>
		</command>
		<command name="find next" code="sTBL1559" description="Continues a search that was begun with the find method. Finds the next cell that matches those same conditions and returns a range object that represents that cell. Doesn't affect the selection or the active cell.">
			<direct-parameter type="range"/>
			<parameter name="after" code="5167" type="XlCategoryNames" optional="yes" description="The cell after which you want to search. Note that after must be a single cell in the range.  If this argument isn't specified, the search starts after the cell in the upper-left corner of the range."/>
			<result type="range" description="The range which the specified data was found."/>
		</command>
		<command name="find previous" code="sTBL1560" description="Continues a search that was begun with the find method. Finds the previous cell that matches those same conditions and returns a range object that represents that cell. Doesn't affect the selection or the active cell.">
			<direct-parameter type="range"/>
			<parameter name="after" code="5167" type="XlCategoryNames" optional="yes" description="The cell after which you want to search. Note that after must be a single cell in the range.  If this argument isn't specified, the search starts after the cell in the upper-left corner of the range."/>
			<result type="range" description="The range which the specified data was found."/>
		</command>
		<command name="function wizard" code="sTBL1569" description="Starts the Function Wizard for the upper-left cell of the range.">
			<direct-parameter type="range"/>
		</command>
		<command name="get XML value" code="sTBL1628" description="Returns the value of the specified range as XML.">
			<direct-parameter type="range"/>
			<result type="any"/>
		</command>
		<command name="get address" code="sTBL1515" description="Returns the range reference in the language of the macro.">
			<direct-parameter type="range"/>
			<parameter name="row absolute" code="5121" type="boolean" optional="yes" description="Set to true to return the row part of the reference as an absolute reference. The default value is true."/>
			<parameter name="column absolute" code="5122" type="boolean" optional="yes" description="Set to true to return the column part of the reference as an absolute reference. The default value is true."/>
			<parameter name="reference style" code="1297" type="XlReferenceStyle" optional="yes" description="Specifies what reference style should be returned. The default is A1."/>
			<parameter name="external" code="5123" type="boolean" optional="yes" description="Set to true to return an external reference. False to return a local reference. The default value is false."/>
			<parameter name="relative to" code="5087" type="XlCategoryNames" optional="yes" description="If row absolute and column absolute are false, and reference style is R1C1, you must include a starting point for the relative reference. This argument is a range object that defines the starting point."/>
			<result type="text" description="The address string"/>
		</command>
		<command name="get address local" code="sTBL1516" description="Returns the range reference in the language of the user.">
			<direct-parameter type="range"/>
			<parameter name="row absolute" code="5121" type="boolean" optional="yes" description="Set to true to return the row part of the reference as an absolute reference. The default value is true."/>
			<parameter name="column absolute" code="5122" type="boolean" optional="yes" description="Set to true to return the column part of the reference as an absolute reference. The default value is true."/>
			<parameter name="reference style" code="1297" type="XlReferenceStyle" optional="yes" description="Specifies what reference style should be returned. The default is A1."/>
			<parameter name="external" code="5123" type="boolean" optional="yes" description="Set to true to return an external reference. False to return a local reference. The default value is false."/>
			<parameter name="relative to" code="5087" type="XlCategoryNames" optional="yes" description="If row absolute and column absolute are false, and reference style is R1C1, you must include a starting point for the relative reference. This argument is a range object that defines the starting point."/>
			<result type="text" description="The address string"/>
		</command>
		<command name="get border" code="sTBLXBtr" description="Returns the specified border object.">
			<direct-parameter type="range"/>
			<parameter name="which border" code="wWbr" type="XlBordersIndex" description="This specifies which border object should be retrieved."/>
			<result type="border"/>
		</command>
		<command name="get end" code="sTBL1552" description="Returns a range object that represents the cell at the end of the region that contains the source range.">
			<direct-parameter type="range"/>
			<parameter name="direction" code="5165" type="XlDirection" description="The direction in which to move."/>
			<result type="range"/>
		</command>
		<command name="get offset" code="sTBL1595" description="Returns a range object that represents a range that's offset from the specified range.">
			<direct-parameter type="range"/>
			<parameter name="row offset" code="5188" type="integer" optional="yes" description="The number of rows, positive, negative, or zero, by which the range is to be offset. The default value is 0."/>
			<parameter name="column offset" code="5189" type="integer" optional="yes" description="The number of columns, positive, negative, or zero, by which the range is to be offset. The default value is 0."/>
			<result type="range"/>
		</command>
		<command name="get resize" code="sTBL1609" description="Resizes the specified range. Returns a Range object that represents the resized range.">
			<direct-parameter type="range"/>
			<parameter name="row size" code="5195" type="integer" optional="yes" description="The number of rows in the new range. If this argument is omitted, the number of rows in the range remains the same."/>
			<parameter name="column size" code="5196" type="integer" optional="yes" description="The number of columns in the new range. If this argument is omitted, the number of columns in the range remains the same."/>
			<result type="range" description="A range object that represents the resized range."/>
		</command>
		<command name="goal seek" code="sTBL1570" description="Calculates the values necessary to achieve a specific goal. If the goal is an amount returned by a formula, this calculates a value that, when supplied to your formula, causes the formula to return the number you want. Returns True if successful.">
			<direct-parameter type="range"/>
			<parameter name="goal" code="5178" type="real" description="The value you want returned in this cell."/>
			<parameter name="changing cell" code="5179" type="range" description="Specifies which cell should be changed to achieve the target value."/>
			<result type="boolean" description="Specifies if the goal was met."/>
		</command>
		<command name="group" code="sTBL1571" description="When the Range object represents a single cell in a pivot table field's data range, the group method performs numeric or date-based grouping in that field.">
			<direct-parameter type="range"/>
			<parameter name="start" code="5144" type="integer" optional="yes" description="The first value to be grouped. If this argument is omitted or true, the first value in the field is used."/>
			<parameter name="end" code="5180" type="integer" optional="yes" description="The last value to be grouped. If this argument is omitted or true, the last value in the field is used."/>
			<parameter name="by" code="5181" type="integer" optional="yes" description="If the field is numeric, this argument specifies the size of each group."/>
			<parameter name="periods" code="5182" optional="yes" description="An array of boolean values that specify the period for the group, as shown in the following list item 1 seconds, 2 minutes, 3 hours, 4 days, 5 months, 6 quarters, 7 years.  It the items is set to true, a group is created for the corresponding time.">
				<type type="boolean" list="yes"/>
			</parameter>
			<result type="boolean" description="Specifies success or failure."/>
		</command>
		<command name="insert indent" code="sTBL1577" description="Adds an indent to the specified range.">
			<direct-parameter type="range"/>
			<parameter name="insert amount" code="5183" type="integer" description="The amount to be added to the current indent."/>
		</command>
		<command name="insert into range" code="sTBLXiiR" description="Inserts a cell or a range of cells into the worksheet or macro sheet and shifts other cells away to make space.">
			<direct-parameter type="range"/>
			<parameter name="shift" code="5164" type="XlInsertShiftDirection" optional="yes" description="Specifies which way to shift the cells."/>
		</command>
		<command name="justify" code="sTBL1580" description="Rearranges the text in a range so that it fills the range evenly.">
			<direct-parameter type="range"/>
		</command>
		<command name="list names" code="sTBL1582" description="Pastes a list of all non-hidden names onto the worksheet, beginning with the first cell in the range.">
			<direct-parameter type="range"/>
		</command>
		<command name="merge" code="sTBL1585" description="Creates a merged cell from the specified Range object.">
			<direct-parameter type="range"/>
			<parameter name="across" code="5184" type="boolean" optional="yes"/>
		</command>
		<command name="navigate arrow" code="sTBL1589" description="Navigates a tracer arrow for the specified range to the precedent, dependent, or error-causing cell or cells. Selects the precedent, dependent, or error cells and returns a range object that represents the new selection.">
			<direct-parameter type="range"/>
			<parameter name="toward precedent" code="5185" type="boolean" optional="yes" description="Specifies the direction to navigate: True to navigate toward precedents, False to navigate toward dependent."/>
			<parameter name="arrow number" code="5186" type="integer" optional="yes" description="Specifies the arrow number to navigate, corresponds to the numbered reference in the cell's formula."/>
			<parameter name="link number" code="5187" type="integer" optional="yes" description="If the arrow is an external reference arrow, this argument indicates which external reference to follow. If this argument is omitted, the first external reference is followed."/>
		</command>
		<command name="parse" code="sTBL1599" description="Parses a range of data and breaks it into multiple cells. Distributes the contents of the range to fill several adjacent columns; the range can be no more than one column wide.">
			<direct-parameter type="range"/>
			<parameter name="parse line" code="5190" type="text" optional="yes" description="A string that contains left and right brackets to indicate where the cells should be split."/>
			<parameter name="destination" code="5134" type="XlCategoryNames" optional="yes" description="A range object that represents the upper-left corner of the destination range for the parsed data. If this argument is omitted, Microsoft Excel parses in place."/>
		</command>
		<command name="paste special" code="sTBL1600" description="Pastes the contents of the Clipboard onto the sheet, using a specified format. Use this method to paste data from other applications or to paste data in a specific format.">
			<direct-parameter type="range"/>
			<parameter name="what" code="5166" type="XlPasteType" optional="yes" description="The part of the range to be pasted."/>
			<parameter name="operation" code="5192" type="XlPasteSpecialOperation" optional="yes" description="The paste operation."/>
			<parameter name="skip blanks" code="5193" type="boolean" optional="yes" description="Set to true to have blank cells in the range on the clipboard not be pasted into the destination range. The default value is false."/>
			<parameter name="transpose" code="1383" type="boolean" optional="yes" description="set to true to transpose rows and columns when the range is pasted. The default value is false."/>
		</command>
		<command name="print out" code="sTBL1128" description="Prints the object">
			<direct-parameter type="range"/>
			<parameter name="from" code="5022" type="integer" optional="yes" description="The number of the page at which to start printing. If this argument is omitted, printing starts at the beginning."/>
			<parameter name="to" code="5023" type="integer" optional="yes" description="The number of the last page to print. If this argument is omitted, printing ends with the last page."/>
			<parameter name="copies" code="5024" type="integer" optional="yes" description="The number of copies to print. If this argument is omitted, one copy is printed."/>
			<parameter name="preview" code="5025" type="boolean" optional="yes" description="Set to true to have Microsoft Excel invoke print preview before printing the object."/>
			<parameter name="active printer" code="5026" type="text" optional="yes" description="Sets the name of the active printer."/>
			<parameter name="print to file" code="5027" type="boolean" optional="yes" description="Set to true to print to a file."/>
			<parameter name="collate" code="5028" type="boolean" optional="yes" description="Set to true to collate multiple copies."/>
		</command>
		<command name="print preview" code="sTBL1129" description="Shows a preview of the object as it would look when printed. This function has been deprecated.">
			<direct-parameter type="range"/>
			<parameter name="enable changes" code="5029" type="boolean" optional="yes" description="Controls access to the page setup dialog and the ability to change margins from the preview window by enabling or disabling the setup and margins buttons, respectively."/>
		</command>
		<command name="remove duplicates" code="sTBLXCcr" description="Removes duplicate values from a range of values.">
			<direct-parameter type="specifier"/>
		</command>
		<command name="remove subtotal" code="sTBL1608" description="Removes subtotals from a list.">
			<direct-parameter type="range"/>
		</command>
		<command name="replace" code="sTBL1393" description="Finds and replaces characters in cells within a range. Doesn't change the selection or the active cell.">
			<direct-parameter type="range"/>
			<parameter name="what" code="5166" type="text" description="The string to search for."/>
			<parameter name="replacement" code="5194" type="text" description="The replacement string."/>
			<parameter name="look at" code="5169" type="XlLookAt" optional="yes" description="Specifies the part that should be looked at."/>
			<parameter name="search order" code="5170" type="XlSearchOrder" optional="yes" description="Specifies if the search should be rows or columns."/>
			<parameter name="match case" code="5172" type="boolean" optional="yes" description="Set to true to make the search case sensitive."/>
			<parameter name="match byte" code="5173" type="boolean" optional="yes" description="Used only in the East Asian version of Microsoft Excel. Set to true to have double-byte characters match only double-byte characters. False to have double-byte characters match their single-byte equivalents."/>
			<parameter name="match control characters" code="5174" type="boolean" optional="yes" description="Used only in the East Asian version of Microsoft Excel. Set to true to have double-byte characters match only double-byte characters. False to have double-byte characters match their single-byte equivalents."/>
			<parameter name="match diacritics" code="5175" type="boolean" optional="yes" description="Used only in the East Asian version of Microsoft Excel. Set to true to have double-byte characters match only double-byte characters. False to have double-byte characters match their single-byte equivalents."/>
			<parameter name="formula version" code="repf" type="XlFormulaVersion" optional="yes" description="Specifies if the search/replace should be using formula or formula2"/>
			<result type="boolean" description="Specifies success or failure."/>
		</command>
		<command name="row differences" code="sTBL1610" description="Returns a range object that represents all the cells whose contents are different from those of the comparison cell in each row.">
			<direct-parameter type="range"/>
			<parameter name="comparison" code="5149" type="cell" description="A single cell to compare with the specified range."/>
			<result type="range" description="The result range."/>
		</command>
		<command name="run VB macro" code="sTBL2620" description=" Runs a macro or calls a function. This can be used to run a macro written in the Microsoft Excel 4.0 macro language, or to run a function in a DLL or XLL.">
			<direct-parameter type="range"/>
			<parameter name="arg1" code="5040" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg2" code="5041" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg3" code="5042" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg4" code="5043" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg5" code="5044" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg6" code="5045" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg7" code="5046" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg8" code="5047" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg9" code="5048" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg10" code="5049" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg11" code="5050" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg12" code="5051" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg13" code="5052" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg14" code="5053" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg15" code="5054" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg16" code="5055" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg17" code="5056" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg18" code="5057" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg19" code="5058" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg20" code="5059" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg21" code="5060" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg22" code="5061" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg23" code="5062" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg24" code="5063" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg25" code="5064" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg26" code="5065" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg27" code="5066" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg28" code="5067" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg29" code="5068" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg30" code="5069" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<result type="text" description="The result of the macro."/>
		</command>
		<command name="run XLM macro" code="sTBL1186" description=" Runs a macro or calls a function. This can be used to run a macro written in the Microsoft Excel 4.0 macro language, or to run a function in a DLL or XLL.">
			<direct-parameter type="range"/>
			<parameter name="arg1" code="5040" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg2" code="5041" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg3" code="5042" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg4" code="5043" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg5" code="5044" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg6" code="5045" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg7" code="5046" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg8" code="5047" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg9" code="5048" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg10" code="5049" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg11" code="5050" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg12" code="5051" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg13" code="5052" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg14" code="5053" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg15" code="5054" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg16" code="5055" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg17" code="5056" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg18" code="5057" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg19" code="5058" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg20" code="5059" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg21" code="5060" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg22" code="5061" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg23" code="5062" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg24" code="5063" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg25" code="5064" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg26" code="5065" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg27" code="5066" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg28" code="5067" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg29" code="5068" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<parameter name="arg30" code="5069" type="any" optional="yes" description="An argument to be passed to the macro."/>
			<result type="text" description="The result of the macro."/>
		</command>
		<command name="set XML value" code="sTBL1629" description="Set the value of the specified range using XML.">
			<direct-parameter type="range"/>
			<parameter name="range value" code="XrgV" type="any"/>
		</command>
		<command name="show" code="sTBL1613" description="Scrolls through the contents of the active window to move the range into view. The range must consist of a single cell in the active document.">
			<direct-parameter type="range"/>
		</command>
		<command name="show dependents" code="sTBL1614" description="Draws tracer arrows to the direct dependents of the range.">
			<direct-parameter type="range"/>
			<parameter name="remove" code="5197" type="boolean" optional="yes" description="Set to true to remove one level of tracer arrows to direct dependents. False to expand one level of tracer arrows. The default value is false."/>
		</command>
		<command name="show errors" code="sTBL1616" description="Draws tracer arrows through the precedents tree to the cell that's the source of the error, and returns the range that contains that cell.">
			<direct-parameter type="range"/>
		</command>
		<command name="show precedents" code="sTBL1617" description="Draws tracer arrows to the direct precedents of the range.">
			<direct-parameter type="range"/>
			<parameter name="remove" code="5197" type="boolean" optional="yes" description="Set to true to remove one level of tracer arrows to direct precedents. False to expand one level of tracer arrows. The default value is false."/>
		</command>
		<command name="sort" code="sTBL1619" description="Sorts a pivot table, a range, or the current region, if the specified range contains only one cell.">
			<direct-parameter type="range"/>
			<parameter name="key1" code="5198" type="range" optional="yes" description="The first sort field."/>
			<parameter name="order1" code="5199" type="XlSortOrder" optional="yes" description="Specifies the sort order for the first sort field."/>
			<parameter name="key2" code="5200" type="range" optional="yes" description="The second sort field."/>
			<parameter name="sort type" code="Styp" type="XlSortType" optional="yes" description="Specifies which elements are sorted."/>
			<parameter name="order2" code="5201" type="XlSortOrder" optional="yes" description="Specifies the sort order for the second sort field."/>
			<parameter name="key3" code="5202" type="range" optional="yes" description="The third sort field."/>
			<parameter name="order3" code="5203" type="XlSortOrder" optional="yes" description="Specifies the sort order for the third sort field."/>
			<parameter name="header" code="5204" type="XlYesNoGuess" optional="yes" description="Specifies whether the first row contains headers."/>
			<parameter name="order custom" code="5205" type="integer" optional="yes" description="A 1-based integer offset into the list of custom sort orders. If this argument is omitted, 1, normal, is used."/>
			<parameter name="match case" code="5172" type="boolean" optional="yes" description="Set to true to do a case-sensitive sort."/>
			<parameter name="orientation" code="1596" type="XlSortOrientation" optional="yes" description="Specifies if the sort is done top to bottom or left to right."/>
			<parameter name="sort method" code="5206" type="XlSortMethod" optional="yes" description="Specifies the type of sort.  The default is pin yin."/>
			<parameter name="ignore control characters" code="5207" type="boolean" optional="yes" description="It is not supported any more."/>
			<parameter name="ignore diacritics" code="5208" type="boolean" optional="yes" description="It is not supported any more."/>
			<parameter name="dataoption1" code="5373" type="XlSortDataOption" optional="yes" description="Specifies how to sort text in the range specified in Key1. Does not apply to pivot table sorting."/>
			<parameter name="dataoption2" code="5374" type="XlSortDataOption" optional="yes" description="Specifies how to sort text in the range specified in Key2. Does not apply to pivot table sorting."/>
			<parameter name="dataoption3" code="5375" type="XlSortDataOption" optional="yes" description="Specifies how to sort text in the range specified in Key3. Does not apply to pivot table sorting."/>
		</command>
		<command name="sort special" code="sTBL1620" description="Uses East Asian sorting methods to sort the range, or uses the current region if the range contains only one cell.">
			<direct-parameter type="range"/>
			<parameter name="sort method" code="5206" type="XlSortMethod" optional="yes" description="Specifies how to sort."/>
			<parameter name="key1" code="5198" type="range" optional="yes" description="The first sort field."/>
			<parameter name="order1" code="5199" type="XlSortOrder" optional="yes" description="Specifies the sort order for the first sort field."/>
			<parameter name="type" code="5103" type="any" optional="yes" description="Specifies which elements are sorted."/>
			<parameter name="key2" code="5200" type="range" optional="yes" description="The second sort field."/>
			<parameter name="order2" code="5201" type="XlSortOrder" optional="yes" description="Specifies the sort order for the second sort field."/>
			<parameter name="key3" code="5202" type="range" optional="yes" description="The third sort field."/>
			<parameter name="order3" code="5203" type="XlSortOrder" optional="yes" description="Specifies the sort order for the third sort field."/>
			<parameter name="header" code="5204" type="XlYesNoGuess" optional="yes" description="Specifies whether the first row contains headers."/>
			<parameter name="order custom" code="5205" type="integer" optional="yes" description="A 1-based integer offset into the list of custom sort orders. If this argument is omitted, 1, normal, is used."/>
			<parameter name="match case" code="5172" type="boolean" optional="yes" description="Set to true to do a case-sensitive sort."/>
			<parameter name="orientation" code="1596" type="XlSortOrientation" optional="yes" description="Specifies if the sort is done top to bottom or left to right."/>
			<parameter name="dataoption1" code="5376" type="XlSortDataOption" optional="yes" description="Specifies how to sort text in the range specified in Key1. Does not apply to pivot table sorting."/>
			<parameter name="dataoption2" code="5377" type="XlSortDataOption" optional="yes" description="Specifies how to sort text in the range specified in Key2. Does not apply to pivot table sorting."/>
			<parameter name="dataoption3" code="5378" type="XlSortDataOption" optional="yes" description="Specifies how to sort text in the range specified in Key3. Does not apply to pivot table sorting."/>
		</command>
		<command name="special cells" code="sTBL1621" description="Returns a Range object that represents all the cells that match the specified type and value.">
			<direct-parameter type="range"/>
			<parameter name="type" code="5103" type="XlCellType" description="Specifies the cells to include."/>
			<parameter name="value" code="DPVu" type="XlSpecialCellsValue" optional="yes" description="If type is either cell type constants or cell type formulas, this argument is used to determine which types of cells to include in the result.  The default is to select all constants or formulas, no matter what the type."/>
			<result type="range" description="A range containing the special cells."/>
		</command>
		<command name="subtotal" code="sTBL1506" description="Creates subtotals for the range, or the current region, if the range is a single cell.">
			<direct-parameter type="range"/>
			<parameter name="group by" code="5210" type="integer" description="The field to group by, as a 1-based integer offset."/>
			<parameter name="function" code="5151" type="XlConsolidationFunction" description="The subtotal function."/>
			<parameter name="total list" code="5211" description="An array of 1-based field offsets, indicating the fields to which the subtotals are added.">
				<type type="integer" list="yes"/>
			</parameter>
			<parameter name="replace" code="1393" type="boolean" optional="yes" description="Set to true to replace existing subtotals. The default value is false"/>
			<parameter name="page breaks" code="5212" type="boolean" optional="yes" description="Set to true to add page breaks after each group. The default value is false."/>
			<parameter name="summary below data" code="5213" type="XlSummaryRow" optional="yes" description="Specifies if the summary data id placed above or below the range.  The default is below."/>
		</command>
		<command name="text to columns" code="sTBL1623" description="Parses a column of cells that contain text into several columns.">
			<direct-parameter type="range"/>
			<parameter name="destination" code="5134" type="XlCategoryNames" optional="yes" description="A range object that specifies where Microsoft Excel will place the results. If the range is larger than a single cell, the top left cell is used."/>
			<parameter name="data type" code="5216" type="XlTextParsingType" optional="yes" description="The format of the text to be split into columns."/>
			<parameter name="text qualifier" code="5217" type="XlTextQualifier" optional="yes" description="Specifies the text qualifier."/>
			<parameter name="consecutive delimiter" code="5218" type="boolean" optional="yes" description="Set to true to have Microsoft Excel consider consecutive delimiters as one delimiter. The default value is false."/>
			<parameter name="tab" code="5219" type="boolean" optional="yes" description="Set to true to have data type be delimited and to have the tab character be a delimiter. The default value is false."/>
			<parameter name="semicolon" code="5220" type="boolean" optional="yes" description="Set to true to have data type be delimited and to have the semicolon character be a delimiter. The default value is false."/>
			<parameter name="comma" code="5221" type="boolean" optional="yes" description="Set to true to have data type be delimited and to have the comma character be a delimiter. The default value is false."/>
			<parameter name="space" code="5222" type="boolean" optional="yes" description="Set to true to have data type be delimited and to have the space character be a delimiter. The default value is false."/>
			<parameter name="use other" code="XuOr" type="boolean" optional="yes" description="Set to true to have the character specified by the other char argument be the delimiter.  The data type argument must be delimited. The default is false."/>
			<parameter name="other char" code="5224" type="text" optional="yes" description="This is required if the use other argument is true.  Specifies the delimiter character when Other is true. If more than one character is specified, only the first character of the string is used, the remaining characters are ignored."/>
			<parameter name="field info" code="5225" optional="yes" description="A list contain parse information for the individual columns of data. Formats are general format, text format, MDY format, DMY format, YMD format, MYD format, DYM format, YDM format, skip column.">
				<type type="any" list="yes"/>
			</parameter>
			<parameter name="decimal separator" code="5226" type="text" optional="yes" description="A string specifying whether a comma or period is used in the text file as the separator for decimal numbers."/>
			<parameter name="thousands separator" code="5227" type="text" optional="yes" description="A string specifying whether a comma,  period, or apostrophe is used in the text file as the separator for thousands."/>
		</command>
		<command name="ungroup" code="sTBL1624" description="Promotes a range in an outline, that is, decreases its outline level. The specified range must be a row or column, or a range of rows or columns. If the range is in a pivot table, this method ungroups the items contained in the range.">
			<direct-parameter type="range"/>
		</command>
		<command name="unmerge" code="sTBL1586" description="Separates a merged area into individual cells.">
			<direct-parameter type="range"/>
		</command>
		<class name="cell" code="ccel" inherits="range" plural="cells"/>
		<class name="column" code="ccol" inherits="range" plural="columns"/>
		<class name="range" code="X117" description="Represents a cell, a row, a column, a selection of cells containing one or more contiguous blocks of cells, or a 3-D range." plural="ranges">
			<element type="range"/>
			<element type="cell"/>
			<element type="row"/>
			<element type="column"/>
			<element type="character"/>
			<element type="format condition"/>
			<element type="hyperlink"/>
			<property name="Excel comment" code="X229" type="Excel comment" access="r" description=" Returns a comment object that represents the comment associated with the cell in the upper-left corner of the range."/>
			<property name="add indent" code="1514" type="boolean" description="Returns or sets if text is automatically indented when the text alignment in a cell is set to equal distribution either horizontally or vertically."/>
			<property name="areas" code="1520" access="r" description="Returns a list of  range objects  that represents all the ranges in a multiple-area selection.">
				<type type="specifier" list="yes"/>
			</property>
			<property name="column width" code="1536" type="real" description="Returns or sets the width of all columns in the specified range."/>
			<property name="count large" code="XCcs" type="null" access="r" description="Counts the largest value in a given range of values. Read-only Variant."/>
			<property name="current array" code="1541" type="range" access="r" description="If the specified cell is part of an array, returns a range object that represents the entire array."/>
			<property name="current region" code="1542" type="range" access="r" description="Returns a range object that represents the current region. The current region is a range bounded by any combination of blank rows and blank columns."/>
			<property name="dependents" code="1548" type="range" access="r" description="Returns a range object that represents the range containing all the dependents of a cell. This can be a multiple selection, a union of Range objects, if there's more than one dependent."/>
			<property name="direct dependents" code="1550" type="range" access="r" description="Returns a range object that represents the range containing all the direct dependents of a cell. This can be a multiple selection, a union of Range objects, if there's more than one dependent."/>
			<property name="direct precedents" code="1551" type="range" access="r" description="Returns a range object that represents the range containing all the direct precedents of a cell. This can be a multiple selection, a union of Range objects,  if there's more than one precedent."/>
			<property name="display format" code="X306" type="display format" access="r" description="Returns the display format associated with this range."/>
			<property name="entire column" code="1553" type="range" access="r" description="Returns a range object that represents the entire column, or columns,  that contains the specified range."/>
			<property name="entire row" code="1554" type="range" access="r" description="Returns a range object that represents the entire row, or rows,  that contains the specified range."/>
			<property name="first column index" code="XfcX" type="integer" access="r" description="Returns the number of the first column in the first area in the specified range."/>
			<property name="first row index" code="XfrX" type="integer" access="r" description="Returns the number of the first row of the first area in the range."/>
			<property name="font object" code="XftO" type="font" access="r" description="Returns the font object associated with this range."/>
			<property name="formula" code="1562" type="any" description="Returns or sets the object's formula, in A1-style notation."/>
			<property name="formula array" code="1563" type="text" description="Returns or sets the array formula of a range."/>
			<property name="formula hidden" code="1565" type="boolean" description="Returns or sets if the formula will be hidden when the workbook or worksheet is protected."/>
			<property name="formula label" code="1564" type="XlFormulaLabel" description="Returns or sets the formula label type for the specified range. "/>
			<property name="formula local" code="1566" type="text" description="Returns or sets the formula for the object, using A1-style references in the language of the user."/>
			<property name="formula r1c1" code="1567" type="text" description="Returns or sets the formula for the object, using R1C1-style notation."/>
			<property name="formula r1c1 local" code="1568" type="text" description="Returns or sets the formula for the object, using R1C1-style notation in the language of the user."/>
			<property name="formula2" code="2122" type="any" description="Returns or sets the object's formula, in A1-style notation."/>
			<property name="formula2 local" code="Fm2l" type="text" description="Returns or sets the formula for the object, using A1-style references in the language of the user."/>
			<property name="formula2 r1c1" code="F2rc" type="text" description="Returns or sets the formula for the object, using R1C1-style notation."/>
			<property name="formula2 r1c1 local" code="F2rl" type="text" description="Returns or sets the formula for the object, using R1C1-style notation in the language of the user."/>
			<property name="has array" code="1572" type="boolean" access="r" description="Returns true if the specified cell is part of an array formula."/>
			<property name="has formula" code="1573" type="boolean" access="r" description="Returns true if all cells in the range contain formulas."/>
			<property name="height" code="hght" type="real" access="r" description="Returns the height of the range."/>
			<property name="hidden" code="1574" type="boolean" description="Returns or sets if the rows or columns are hidden. The specified range must span an entire column or row."/>
			<property name="horizontal alignment" code="1575" type="XlHAlign" description="Returns or sets the horizontal alignment for the range."/>
			<property name="indent level" code="1576" type="integer" description="Returns or sets the indent level for the range or style. Can be an integer from 0 to 15."/>
			<property name="interior object" code="XitO" type="interior" access="r" description="Returns an interior object that represents the interior of the specified object."/>
			<property name="left position" code="plft" type="real" access="r" description="The distance from the left edge of column A to the left edge of the range. If the range is discontinuous, the first area is used. If the range is more than one column wide, the leftmost column in the range is used."/>
			<property name="list header rows" code="1581" type="integer" access="r" description="Returns the number of header rows for the specified range."/>
			<property name="list object" code="X244" type="list object" access="r" description="Returns the list object associated with this range."/>
			<property name="location in table" code="1583" type="XlLocationInTable" access="r" description="Returns an enumeration that describes the part of the pivot table that contains the upper-left corner of the specified range."/>
			<property name="locked" code="1584" type="boolean" description="Returns or sets  if the range is locked."/>
			<property name="merge area" code="1587" type="range" access="r" description="Returns a range object that represents the merged range containing the specified cell. If the specified cell isn't in a merged range, this property returns the specified cell."/>
			<property name="merge cells" code="1588" type="boolean" description="Returns or sets if the range contains merged cells. "/>
			<property name="name" code="pnam" type="text" description="Returns or sets the name of the range."/>
			<property name="named item" code="X220" type="text" access="r" description="Returns the named item associated with this range."/>
			<property name="number format" code="1593" type="text" description="Returns or sets the format code for the object."/>
			<property name="number format local" code="1594" type="text" description="Returns or sets the format code for the object as a string in the language of the user."/>
			<property name="outline level" code="1597" type="integer" description="Returns or sets the current outline level of the specified row or column"/>
			<property name="page break" code="1598" type="XlPageBreak" description="Returns or sets the location of a page break."/>
			<property name="phonetic object" code="1637" type="phonetic" access="r" description="Returns the phonetic object, which contains information about a specific phonetic text string in a specified range."/>
			<property name="pivot field" code="X157" type="pivot field" access="r" description="Returns a pivot field object that represents the pivot field containing the upper-left corner of the specified range."/>
			<property name="pivot item" code="X160" type="pivot item" access="r" description="Returns a pivot item object that represents the pivot item containing the upper-left corner of the specified range."/>
			<property name="pivot table" code="X155" type="pivot table" access="r" description="Returns a pivot table object that represents the pivot table containing the upper-left corner of the specified range."/>
			<property name="precedents" code="1604" type="range" access="r" description="Returns a range object that represents all the precedents of a cell. This can be a multiple selection, a union of Range objects, if there's more than one precedent."/>
			<property name="prefix character" code="1605" type="text" access="r" description="Returns the prefix character for the cell."/>
			<property name="query table" code="X231" type="query table" access="r" description="Returns a query table object that represents the query table that intersects the specified range."/>
			<property name="reading order" code="1639" type="XLDefaultSheetDir" description="Returns or sets the reading order for the specified object."/>
			<property name="row height" code="1611" type="real" description="Returns  or sets the height of all the rows in the range specified, measured in points."/>
			<property name="show detail" code="1615" type="boolean" description="Returns or sets if the outline is expanded for the specified range, so that the detail of the column or row is visible. The specified range must be a single summary column or row in an outline."/>
			<property name="shrink to fit" code="1618" type="boolean" description="Returns or sets if text automatically shrinks to fit in the available column width."/>
			<property name="string value" code="XRgt" type="any" access="r" description="Returns the text for the range."/>
			<property name="style object" code="1029" type="style" description="Returns or sets a style object that represents the style of the specified range."/>
			<property name="summary" code="1622" type="boolean" access="r" description="Returns true if the range is an outlining summary row or column. The range should be a row or a column."/>
			<property name="text orientation" code="XtOr" type="XlOrientation" description="The text orientation. Can be a number value from -90 to 90 degrees."/>
			<property name="top" code="ptop" type="real" access="r" description="The distance from the top edge of row 1 to the top edge of the range. If the range is discontinuous, the first area is used. If the range is more than one row high, the top, lowest numbered, row in the range is used."/>
			<property name="use standard height" code="1625" type="boolean" description="Returns or sets if the row height of the range object equals the standard height of the sheet."/>
			<property name="use standard width" code="1626" type="boolean" description="Returns or sets if the column width of the range object equals the standard width of the sheet."/>
			<property name="validation" code="X237" type="validation" access="r" description="Returns the validation object that represents data validation for the specified range."/>
			<property name="value" code="DPVu" type="any" description="Returns or sets the value of the range."/>
			<property name="value2" code="DPV2" type="any" description="Returns or sets the value of the range. The difference between this property and Value is that Value2 uses the numerical representation of cells that are formatted as currency and date."/>
			<property name="vertical alignment" code="1631" type="XlVerticalAlignmentTarget" description="Returns or sets the vertical alignment of the range."/>
			<property name="width" code="pwid" type="real" access="r" description="Returns the width of the range."/>
			<property name="worksheet object" code="1632" type="sheet" access="r" description="Returns a worksheet object that represents the worksheet containing the specified range."/>
			<property name="wrap text" code="1633" type="boolean" description="Returns or sets if Microsoft Excel wraps the text in the object."/>
		</class>
		<class name="row" code="crow" inherits="range" plural="rows"/>
	</suite>
	<suite name="Proofing Suite" code="sPRF" description="Classes and types for scripting text proofing">
		<command name="add replacement" code="sPRF2208" description="Adds an entry to the array of autocorrect replacements.">
			<direct-parameter type="autocorrect"/>
			<parameter name="text to replace" code="Xt2R" type="text" description="The text to be replaced. If this string already exists in the array of autocorrect replacements, the existing substitute text is replaced by the new text."/>
			<parameter name="replacement text" code="XRtx" type="text" description="The replacement text."/>
		</command>
		<command name="delete replacement" code="sPRF2210" description="Deletes an entry from the array of autocorrect replacements. ">
			<direct-parameter type="autocorrect"/>
			<parameter name="what" code="5166" type="text" description="The text to be replaced, as it appears in the row to be deleted from the array of autocorrect replacements. If this string doesn't exist in the array of autocorrect replacements, this method fails."/>
		</command>
		<command name="get replacement list" code="sPRF2211" description="Returns a list of autocorrect replacements.">
			<direct-parameter type="autocorrect"/>
			<result>
				<type type="any" list="yes"/>
			</result>
		</command>
		<class name="autocorrect" code="X250" description="Contains Microsoft Excel autocorrect attributes, capitalization of names of days, correction of two initial capital letters, automatic correction list, and so on.">
			<property name="Automatically expand tables as I type" code="Expd" type="boolean" description="Returns or sets if resizes the table to include data entered into a neighboring column or row."/>
			<property name="Automatically fill formulas" code="AtFF" type="boolean" description="Returns or sets if we automatically copies the formula to all the cells in the column when a formula is entered into a cell."/>
			<property name="correct caps lock" code="2216" type="boolean" description="Returns or sets if Microsoft Excel automatically corrects accidental use of the CAPS LOCK key."/>
			<property name="correct days" code="2209" type="boolean" description="Returns or sets if the first letter of day names is capitalized automatically."/>
			<property name="correct initial caps" code="2214" type="boolean" description="Returns or sets if words that begin with two capital letters are corrected automatically."/>
			<property name="correct sentence caps" code="2215" type="boolean" description="Returns or sets if Microsoft Excel automatically corrects sentence, first word, capitalization."/>
			<property name="replace text" code="2213" type="boolean" description="Returns or sets if text in the list of autocorrect replacements is replaced automatically."/>
		</class>
	</suite>
	<suite name="Chart Suite" code="sCRT" description="Classes and types for scripting charts">
		<command name="activate object" code="sCRTxACT" description="Activates the object.">
			<direct-parameter type="4038"/>
		</command>
		<command name="apply custom chart type" code="sCRTXAcC" description="Applies a standard or custom chart type to a chart or series.">
			<direct-parameter type="chart"/>
			<parameter name="chart type" code="1708" type="XlChartGallery" description="A standard chart type, see the chart type property for the list of available constants. For Chart objects, this argument can also be one of the options specified for this argument."/>
			<parameter name="chart name" code="5261" type="text" optional="yes" description="The name of the custom chart type if chart type specifies a custom chart gallery."/>
		</command>
		<command name="apply data labels" code="sCRT1662" description="Applies data labels to all the series in a chart, a single series or a series point.">
			<direct-parameter type="4048"/>
			<parameter name="type" code="5103" type="XlDataLabelsType" optional="yes" description="Specifies the data label type.  The default is 'data labels show value'"/>
			<parameter name="legend key" code="5248" type="boolean" optional="yes" description="Set to true to show the legend key next to the point. The default value is false."/>
			<parameter name="auto text" code="5249" type="boolean" optional="yes" description="Set to true if the object automatically generates appropriate text based on content."/>
			<parameter name="has leader lines" code="5250" type="boolean" optional="yes" description="True for chart and series point objects if the series has leader lines."/>
			<parameter name="show series name" code="5352" type="boolean" optional="yes" description="Set to true to show the series name for the data label."/>
			<parameter name="show category name" code="5353" type="boolean" optional="yes" description="Set to true to show the category name for the data label."/>
			<parameter name="show value" code="5354" type="boolean" optional="yes" description="Set to true to show the value for the data label."/>
			<parameter name="show percentage" code="5355" type="boolean" optional="yes" description="Set to true to show the percentage for the data label."/>
			<parameter name="show bubble size" code="5356" type="boolean" optional="yes" description="Set to true to show the bubble size for the data label."/>
			<parameter name="separator" code="5357" type="text" optional="yes" description="The separator for the data label."/>
		</command>
		<command name="apply layout" code="sCRTACLo" description="Applies a chart layout.">
			<direct-parameter type="chart"/>
			<parameter name="layout" code="5358" type="integer" description="Specifies the type of layout, denoted by a number from 1 to 10."/>
			<parameter name="chart type" code="5359" type="XlChartType" optional="yes" description="If specified, uses the layout from this chart type. For example, you can apply the layouts that are available from a line chart to a column chart. The layout only adds chart elements that are available for that particular chart type."/>
		</command>
		<command name="bring to front" code="sCRT1984" description="Brings the object to the front of the z-order.">
			<direct-parameter type="chart object"/>
		</command>
		<command name="chart location" code="sCRTXcLo" description="Moves the chart to a new location.">
			<direct-parameter type="chart"/>
			<parameter name="where" code="5260" type="XlChartLocation" description="Where to move the chart."/>
			<parameter name="name" code="pnam" type="text" optional="yes" description="The name of the sheet where the chart will be embedded if where is location as object or the name of the new sheet if where is location as new sheet."/>
			<result type="chart"/>
		</command>
		<command name="chart one color gradient" code="sCRTXc1c" description="Sets the specified fill to a one-color gradient.">
			<direct-parameter type="4041"/>
			<parameter name="gradient style" code="XgSy" type="MsoGradientStyle" description="The gradient style."/>
			<parameter name="variant" code="5008" type="integer" description="The gradient variant. Can be a value from 1 through 4, corresponding to one of the four variants on the gradient tab in the fill effects dialog box. If gradient style is from center gradient, the variant argument can only be 1 or 2."/>
			<parameter name="degree" code="5009" type="real" description="The gradient degree. Can be a value from 0.0 dark, through 1.0 light."/>
		</command>
		<command name="chart patterned" code="sCRT1080" description="Sets the specified fill to a pattern.">
			<direct-parameter type="4040"/>
			<parameter name="pattern" code="1028" type="MsoPatternType" description="The pattern type."/>
		</command>
		<command name="chart solid" code="sCRTXcSd" description="Sets the specified fill to a uniform color. Use this method to convert a gradient, textured, patterned, or background fill back to a solid fill.">
			<direct-parameter type="4045"/>
		</command>
		<command name="chart two color gradient" code="sCRTXc2G" description="Sets the specified fill to a two-color gradient.">
			<direct-parameter type="4044"/>
			<parameter name="gradient style" code="XgSy" type="MsoGradientStyle" description="The gradient style."/>
			<parameter name="variant" code="5008" type="integer" description="The gradient variant. Can be a value from 1 through 4, corresponding to one of the four variants on the gradient tab in the fill effects dialog box. If gradient style is from center gradient, the variant argument can only be 1 or 2."/>
		</command>
		<command name="chart user picture" code="sCRTXcup" description="Fills the specified shape with an image.">
			<direct-parameter type="4043"/>
			<parameter name="picture file" code="5012" type="text" description="The name of the picture file."/>
			<parameter name="picture format" code="5334" type="XlChartPictureType" optional="yes" description="The picture format."/>
			<parameter name="picture stack unit" code="5335" type="integer" optional="yes" description="The picture stack or scale unit, depends on the picture format argument."/>
			<parameter name="picture placement" code="5336" type="XlChartPicturePlacement" optional="yes" description="The picture placement."/>
		</command>
		<command name="chart user textured" code="sCRTXuTd" description="Fills the specified shape with small tiles of an image.">
			<direct-parameter type="4042"/>
			<parameter name="texture file" code="5013" type="text" description="The name of the picture file."/>
		</command>
		<command name="chart wizard" code="sCRT1674" description="Modifies the properties of the given chart. You can use this method to quickly format a chart without setting all the individual properties. This method is noninteractive, and it changes only the specified properties.">
			<direct-parameter type="chart"/>
			<parameter name="source" code="5252" type="range" optional="yes" description="The range that contains the source data for the new chart. If this argument is omitted, Microsoft Excel edits the active chart sheet or the selected chart on the active worksheet."/>
			<parameter name="gallery" code="5118" type="XlChartType" optional="yes" description="Specifies he chart type."/>
			<parameter name="format" code="5140" type="integer" optional="yes" description="The option number for the built-in autoformats. Can be a number from 1 through 10, depending on the gallery type. If this argument is omitted, Microsoft Excel chooses a default value based on the gallery type and data source."/>
			<parameter name="plot by" code="5253" type="XlRowCol" optional="yes" description="Specifies whether the data for each series is in rows or columns."/>
			<parameter name="category labels" code="5254" type="integer" optional="yes" description="An integer specifying the number of rows or columns within the source range that contain category labels. Legal values are from zero through one less than the maximum number of the corresponding categories or series."/>
			<parameter name="series labels" code="5255" type="integer" optional="yes" description="An integer specifying the number of rows or columns within the source range that contain series labels. Legal values are from zero through one less than the maximum number of the corresponding categories or series."/>
			<parameter name="has legend" code="5256" type="boolean" optional="yes" description="Set to true to include a legend."/>
			<parameter name="title" code="5093" type="text" optional="yes" description="Specifies the chart title text."/>
			<parameter name="category title" code="5257" type="text" optional="yes" description="Specifies the category axis title text."/>
			<parameter name="value title" code="5258" type="text" optional="yes" description="Specifies the value axis title text."/>
			<parameter name="extra title" code="5259" type="text" optional="yes" description="Specifies the series axis title for 3-D charts or the second value axis title for 2-D charts."/>
		</command>
		<command name="check spelling" code="sCRT1212" description="Checks the spelling of an object.">
			<direct-parameter type="chart"/>
			<parameter name="custom dictionary" code="5081" type="text" optional="yes" description="A string that indicates the file name of the custom dictionary to examine if the word isn't found in the main dictionary. If this argument is omitted, the currently specified dictionary is used."/>
			<parameter name="ignore uppercase" code="5082" type="boolean" optional="yes" description="Set to true to have Microsoft Excel ignore words that are all uppercase. False to have Microsoft Excel check words that are all uppercase."/>
			<parameter name="always suggest" code="5145" type="boolean" optional="yes" description="Set to true to have Microsoft Excel display a list of suggested alternate spellings when an incorrect spelling is found. False to have Microsoft Excel wait for you to input the correct spelling."/>
		</command>
		<command name="clear" code="sCRT1530" description="Clear the object.">
			<direct-parameter type="4052"/>
		</command>
		<command name="clear contents" code="sCRT1531" description="Clears the data from a chart but leaves the formatting. ">
			<direct-parameter type="chart area"/>
		</command>
		<command name="clear formats" code="sCRT1532" description="Clears the formatting of the object.">
			<direct-parameter type="4050"/>
		</command>
		<command name="clear to match style" code="sCRT2434" description="Sets the chart formatting to the last predefined chart style applied.">
			<direct-parameter type="chart"/>
		</command>
		<command name="copy chart as picture" code="sCRTXCcp" description="Copies the selected object to the clipboard as a picture.">
			<direct-parameter type="chart"/>
			<parameter name="appearance" code="5155" type="XlPictureAppearance" optional="yes" description="Specifies how the picture should be copied."/>
			<parameter name="format" code="5140" type="XlCopyPictureFormat" optional="yes" description="The format of the picture."/>
			<parameter name="output size" code="XopZ" type="XlPictureAppearance" optional="yes" description="The size of the copied picture when the object is a chart on a chart sheet, not embedded on a worksheet."/>
		</command>
		<command name="copy object" code="sCRTXcpO" description="Copies the object to the clipboard.">
			<direct-parameter type="4049"/>
		</command>
		<command name="copy picture" code="sCRT1539" description="Copies the selected object to the clipboard as a picture.">
			<direct-parameter type="chart object"/>
			<parameter name="appearance" code="5155" type="XlPictureAppearance" optional="yes" description="Specifies how the picture should be copied."/>
			<parameter name="format" code="5140" type="XlCopyPictureFormat" optional="yes" description="The format of the picture."/>
		</command>
		<command name="cut" code="sCRT1543" description="Cuts the object to the clipboard.">
			<direct-parameter type="chart object"/>
		</command>
		<command name="delete object" code="sCRTXdel" description="Deletes the object.">
			<direct-parameter type="4039"/>
		</command>
		<command name="deselect" code="sCRT1680" description="Cancels the selection for the specified chart.">
			<direct-parameter type="chart"/>
		</command>
		<command name="error bar" code="sCRT2299" description="Applies error bars to the series.">
			<direct-parameter type="series"/>
			<parameter name="direction" code="5165" type="XlErrorBarDirection" description="The error bar direction."/>
			<parameter name="include" code="5337" type="XlErrorBarInclude" description="The error bar parts to include."/>
			<parameter name="type" code="5103" type="XlErrorBarType" description="The error bar type."/>
			<parameter name="amount" code="5338" type="real" optional="yes" description="The error amount. Used for only the positive error amount when type is error bar type custom."/>
			<parameter name="minus values" code="5339" type="real" optional="yes" description="The negative error amount when type is error bar type custom."/>
		</command>
		<command name="get axis" code="sCRTXGAx" description="Returns an object that represents a specified axis object.">
			<direct-parameter type="chart"/>
			<parameter name="axis type" code="XAty" type="XlAxisType"/>
			<parameter name="which axis" code="5251" type="XlAxisGroup" optional="yes"/>
			<result type="axis"/>
		</command>
		<command name="get chart element" code="sCRT1719" description="Returns information about the chart element at specified X and Y coordinates. This method returns a list  of three items.  Please refer to the documentation on the meaning of the returned values.">
			<direct-parameter type="chart"/>
			<parameter name="x" code="5230" type="integer" description="The X coordinate of the chart element."/>
			<parameter name="y" code="5231" type="integer" description="The Y coordinate of the chart element."/>
			<result description="The list of returned values.">
				<type type="XlChartItem" list="yes"/>
			</result>
		</command>
		<command name="get has axis" code="sCRT1685" description="Returns which axes exist on the chart.">
			<direct-parameter type="chart"/>
			<parameter name="axis type" code="XAty" type="XlAxisType" optional="yes" description="Specifies the axis type."/>
			<parameter name="axis group" code="5251" type="XlAxisGroup" optional="yes" description="Specifies the axis group."/>
			<result type="boolean" description="Returns true if the specified axis exists."/>
		</command>
		<command name="paste" code="sCRT1696">
			<direct-parameter type="4051"/>
		</command>
		<command name="paste chart" code="sCRTXprt" description="Pastes chart data from the clipboard into the specified chart.">
			<direct-parameter type="chart"/>
			<parameter name="format" code="5140" type="XlPasteType" optional="yes"/>
		</command>
		<command name="paste series" code="sCRTXsPt">
			<direct-parameter type="series"/>
		</command>
		<command name="preset chart gradient" code="sCRTXpCg" description="Sets the specified fill to a preset gradient.">
			<direct-parameter type="4047"/>
			<parameter name="gradient style" code="XgSy" type="MsoGradientStyle" description="The gradient style."/>
			<parameter name="variant" code="5008" type="integer" description="The gradient variant. Can be a value from 1 through 4, corresponding to one of the four variants on the gradient tab in the fill effects dialog box. If gradient style is from center gradient, the variant argument can only be 1 or 2."/>
			<parameter name="preset gradient type" code="5010" type="MsoPresetGradientType" description="The gradient type."/>
		</command>
		<command name="preset chart textured" code="sCRTXpCt" description="Sets the specified fill format to a preset texture.">
			<direct-parameter type="4046"/>
			<parameter name="preset texture for chart" code="5011" type="MsoPresetTexture" description="The preset texture."/>
		</command>
		<command name="print out" code="sCRT1128" description="Prints the object">
			<direct-parameter type="chart"/>
			<parameter name="from" code="5022" type="integer" optional="yes" description="The number of the page at which to start printing. If this argument is omitted, printing starts at the beginning."/>
			<parameter name="to" code="5023" type="integer" optional="yes" description="The number of the last page to print. If this argument is omitted, printing ends with the last page."/>
			<parameter name="copies" code="5024" type="integer" optional="yes" description="The number of copies to print. If this argument is omitted, one copy is printed."/>
			<parameter name="preview" code="5025" type="boolean" optional="yes" description="Set to true to have Microsoft Excel invoke print preview before printing the object."/>
			<parameter name="active printer" code="5026" type="text" optional="yes" description="Sets the name of the active printer."/>
			<parameter name="print to file" code="5027" type="boolean" optional="yes" description="Set to true to print to a file."/>
			<parameter name="collate" code="5028" type="boolean" optional="yes" description="Set to true to collate multiple copies."/>
		</command>
		<command name="print preview" code="sCRT1129" description="Shows a preview of the object as it would look when printed. This function is deprecated.">
			<direct-parameter type="chart"/>
			<parameter name="enable changes" code="5029" type="boolean" optional="yes" description="Controls access to the page setup dialog and the ability to change margins from the preview window by enabling or disabling the setup and margins buttons, respectively."/>
		</command>
		<command name="protect chart" code="sCRTXPTc" description="Protects a chart so that it cannot be modified.">
			<direct-parameter type="chart"/>
			<parameter name="password" code="5236" type="text" optional="yes" description="A string that specifies a case-sensitive password for the sheet or workbook. If this argument is omitted, you can unprotect the sheet or workbook without using a password. Otherwise, you must specify the password to unprotect the sheet or workbook."/>
			<parameter name="drawing objects" code="5237" type="boolean" optional="yes" description="Set to true to protect shapes. The default value is false."/>
			<parameter name="chart contents" code="XcCt" type="boolean" optional="yes" description="Set to true to protect contents. The default value is true."/>
			<parameter name="user interface only" code="5240" type="boolean" optional="yes" description="Set to true to protect the user interface, but not macros. If this argument is omitted, protection applies both to macros and to the user interface."/>
		</command>
		<command name="refresh" code="sCRT1722" description="Updates the cache of the chart object.">
			<direct-parameter type="chart"/>
		</command>
		<command name="save as" code="sCRT1659" description="Saves changes into a different file.">
			<direct-parameter type="chart"/>
			<parameter name="filename" code="5016" type="text" description="A string that indicates the name of the file to be saved. You can include a full path, if you don't, Microsoft Excel saves the file in the current folder."/>
			<parameter name="file format" code="1813" type="XlFileFormat" optional="yes" description="Specifies the file format to use when you save the file."/>
			<parameter name="password" code="5236" type="text" optional="yes" description="A case-sensitive string, no more than 15 characters, that indicates the protection password to be given to the file."/>
			<parameter name="write reservation password" code="5242" type="text" optional="yes" description="A string that indicates the write-reservation password for this file. If a file is saved with the password and the password isn't supplied when the file is opened, the file is opened as read-only."/>
			<parameter name="read only recommended" code="5243" type="boolean" optional="yes" description="Set to true to display a message when the file is opened, recommending that the file be opened as read-only."/>
			<parameter name="create backup" code="5244" type="boolean" optional="yes" description="Set to true to create a backup file."/>
			<parameter name="add to most recently used list" code="5245" type="boolean" optional="yes" description="Set to true to add this workbook to the list of recently used files. The default value is false."/>
			<parameter name="save as local language" code="locl" type="boolean" optional="yes" description="True saves files against the language of Microsoft Excel. False is the default, which saves files against the language of Visual Basic for Applications"/>
		</command>
		<command name="save as picture" code="sCRTOSaP" description="Saves the shape in the requested file using the stated graphic format">
			<direct-parameter type="chart object"/>
			<parameter name="picture type" code="5016" type="MsoPictureType" optional="yes" description="Specifies the graphic format in which the file is saved"/>
			<parameter name="file name" code="5015" type="text" optional="yes" description="The name and path for the picture being saved"/>
		</command>
		<command name="send to back" code="sCRT1988" description="Sends the object to the back of the z-order.">
			<direct-parameter type="chart object"/>
		</command>
		<command name="set background picture" code="sCRT1667" description="Sets the background graphic for a chart.">
			<direct-parameter type="chart"/>
			<parameter name="picture file name" code="XpFN" type="text" optional="yes" description="The name of the graphic file."/>
		</command>
		<command name="set chart element" code="sCRT2432" description="Sets chart elements on a chart.">
			<direct-parameter type="chart"/>
			<parameter name="chart element" code="5360" type="null" description="Specifies the chart element type."/>
		</command>
		<command name="set has axis" code="sCRT1686" description="Sets which axes exist on the chart.">
			<direct-parameter type="chart"/>
			<parameter name="axis exists" code="XAXt" type="boolean" description="Specifies if the specified axis should exist."/>
			<parameter name="axis type" code="XAty" type="XlAxisType" optional="yes" description="Specifies the axis type."/>
			<parameter name="axis group" code="5251" type="XlAxisGroup" optional="yes" description="Specifies the axis group."/>
		</command>
		<command name="set source data" code="sCRT1720" description="Sets the source data range for the chart.">
			<direct-parameter type="chart"/>
			<parameter name="source" code="5252" type="range" description="The range that contains the source data."/>
			<parameter name="plot by" code="1714" type="XlRowCol" optional="yes" description="Specifies the way the data is to be plotted."/>
		</command>
		<command name="unprotect" code="sCRT1660" description="Removes protection from a sheet or workbook. This method has no effect if the sheet or workbook isn't protected.">
			<direct-parameter type="chart"/>
			<parameter name="password" code="5236" type="text" optional="yes" description="A string that denotes the case-sensitive password to use to unprotect the sheet or workbook.  If you omit this argument for a sheet that's protected with a password, you'll be prompted for the password."/>
		</command>
		<class name="area group" code="cg01" inherits="chart group" plural="area groups"/>
		<class name="axis title" code="X257" description="Represents a chart axis title." plural="axis titles">
			<element type="character"/>
			<property name="auto scale font" code="1992" type="boolean" description="Returns or sets if the text in the object changes font size when the object size changes."/>
			<property name="axis title text" code="AtTx" type="text" description="Returns or sets the text associated with this object."/>
			<property name="border" code="X251" type="border" access="r" description="Returns a border object that represents the border of the object."/>
			<property name="caption" code="1108" type="text" description="Returns or sets the caption for this object."/>
			<property name="chart fill format object" code="XCFf" type="chart fill format" access="r" description="Returns a chart fill format object for this object."/>
			<property name="font object" code="XftO" type="font" access="r" description="Returns a font object that represents the font of the specified object."/>
			<property name="horizontal alignment" code="1575" type="XlHAlign" description="Returns or sets the horizontal alignment for the object."/>
			<property name="include in layout" code="1985" type="boolean" description="Returns or sets if a axis title will occupy the chart layout space when a chart layout is being determined."/>
			<property name="interior object" code="XitO" type="interior" access="r" description="Returns an interior object that represents the interior of the specified object."/>
			<property name="left position" code="plft" type="real" description="Returns or sets the left position of the specified object, in points."/>
			<property name="name" code="pnam" type="text" access="r" description="Returns the name of the object."/>
			<property name="orientation" code="1596" type="integer" description="The text orientation.  Can be a number value from -90 to 90 degrees."/>
			<property name="position" code="posn" type="XlChartElementPosition" description="Returns or sets the position of the axis title on the chart."/>
			<property name="reading order" code="1639" type="XLDefaultSheetDir" description="Returns or sets the reading order for the specified object."/>
			<property name="shadow" code="shad" type="boolean" description="Returns or sets if the object has a shadow."/>
			<property name="top" code="ptop" type="real" description="Returns or sets the top position of the specified object, in points."/>
			<property name="vertical alignment" code="1631" type="XlVerticalAlignmentTarget" description="Returns or sets the vertical alignment of the object."/>
		</class>
		<class name="axis" code="X255" description="Represents a single axis in a chart." plural="axes">
			<property name="axis between categories" code="2223" type="boolean" description="Returns or sets if the value axis crosses the category axis between categories."/>
			<property name="axis group" code="AgOb" type="XlAxisGroup" access="r" description="Returns the group for the specified axis."/>
			<property name="axis title" code="X257" type="axis title" access="r" description="Returns an axis title object that represents the title of the specified axis."/>
			<property name="axis type" code="XAty" type="XlAxisType" description="Returns or sets the axis type"/>
			<property name="base unit" code="2250" type="XlTimeUnit" description="Returns or sets the base unit for the specified category axis."/>
			<property name="base unit is auto" code="2251" type="boolean" description="Returns or sets if Microsoft Excel chooses appropriate base units for the specified category axis."/>
			<property name="border" code="X251" type="border" access="r" description="Returns a border object that represents the border of the object."/>
			<property name="category names" code="2226" type="XlCategoryNames" description="Returns or sets all the category names for the specified axis, as a text array. When you set this property, you can set it to either an array or a range object that contains the category names."/>
			<property name="category type" code="2254" type="XlCategoryType" description="Returns or sets the category axis type."/>
			<property name="chart format" code="X115" type="chart format" access="r" description="Returns a chart format object that contains chart formatting properties for the axis."/>
			<property name="crosses" code="2227" type="XlAxisCrosses" description="Returns or sets the point on the specified axis where the other axis crosses."/>
			<property name="crosses at" code="2228" type="real" description="Returns or sets the point on the value axis where the category axis crosses it. Applies only to the value axis."/>
			<property name="display unit" code="2255" type="XlDisplayUnit" description="Returns or sets the unit label for the specified axis. "/>
			<property name="display unit custom" code="2256" type="real" description="If the value of the display unit property is custom display unit, the display unit custom property returns or sets the value of the displayed units."/>
			<property name="display unit label" code="X299" type="display unit label" access="r" description="Returns the display unit label object for the specified axis"/>
			<property name="has display unit label" code="2257" type="boolean" description="Returns or sets if the label specified by the display unit or display unit custom property is displayed on the specified axis. The default value is true."/>
			<property name="has major gridlines" code="2229" type="boolean" description="Returns or sets if the axis has major gridlines. Only axes in the primary axis group can have gridlines."/>
			<property name="has minor gridlines" code="2230" type="boolean" description="Returns or sets if the axis has minor gridlines. Only axes in the primary axis group can have gridlines."/>
			<property name="has title" code="1689" type="boolean" description="Returns or sets if the axis or chart has a visible title."/>
			<property name="height" code="hght" type="real" access="r" description="Returns the height of the object."/>
			<property name="left position" code="plft" type="real" access="r" description="Returns the left position of the specified object, in points."/>
			<property name="log base" code="2258" type="real" description="Returns or sets the base of the logarithm when you are using log scales."/>
			<property name="major gridlines" code="2231" type="gridlines" access="r" description="Returns a gridlines object that represents the major gridlines for the specified axis. Only axes in the primary axis group can have gridlines."/>
			<property name="major tick mark" code="2232" type="XlTickMark" description="Returns or sets the type of major tick mark for the specified axis. "/>
			<property name="major unit" code="2233" type="real" description="Returns or sets the major units for the axis."/>
			<property name="major unit is auto" code="2234" type="boolean" description="Returns or sets if Microsoft Excel calculates the major units for the axis."/>
			<property name="major unit scale" code="2252" type="XlTimeUnit" description="Returns or sets the major unit scale value for the category axis when the category type property is set to time scale."/>
			<property name="maximum scale" code="2235" type="real" description="Returns or sets the maximum value on the axis."/>
			<property name="maximum scale is auto" code="2236" type="boolean" description="Returns or sets if Microsoft Excel calculates the maximum value for the axis."/>
			<property name="minimum scale" code="2237" type="real" description="Returns or sets the minimum value on the axis."/>
			<property name="minimum scale is auto" code="2238" type="boolean" description="Returns or sets if Microsoft Excel calculates the minimum value for the axis."/>
			<property name="minor gridlines" code="2239" type="gridlines" access="r" description="Returns a gridlines object that represents the minor gridlines for the specified axis. Only axes in the primary axis group can have gridlines."/>
			<property name="minor tick mark" code="2240" type="XlTickMark" description="Returns or sets the type of minor tick mark for the specified axis."/>
			<property name="minor unit" code="2241" type="real" description="Returns or sets the minor units on the axis."/>
			<property name="minor unit is auto" code="2242" type="boolean" description="Returns or sets if Microsoft Excel calculates minor units for the axis."/>
			<property name="minor unit scale" code="2253" type="XlTimeUnit" description="Returns or sets the minor unit scale value for the category axis when the category type property is set to time scale. "/>
			<property name="reverse plot order" code="2243" type="boolean" description="Returns or sets if Microsoft Excel plots data points from last to first."/>
			<property name="scale type" code="2244" type="XlScaleType" description="Returns or sets the value axis scale type."/>
			<property name="tick label position" code="2245" type="XlTickLabelPosition" description="Describes the position of tick-mark labels on the specified axis."/>
			<property name="tick label spacing" code="2247" type="integer" description="Returns or sets the number of categories or series between tick-mark labels. Applies only to category and series axes."/>
			<property name="tick label spacing is auto" code="2259" type="boolean" description="Returns or sets whether or not the tick label spacing is automatic."/>
			<property name="tick labels" code="X282" type="tick labels" access="r" description="Returns a tick labels object that represents the tick-mark labels for the specified axis."/>
			<property name="tick mark spacing" code="2248" type="integer" description="Returns or sets the number of categories or series between tick marks. Applies only to category and series axes."/>
			<property name="top" code="ptop" type="real" access="r" description="Returns the top position of the specified object, in points."/>
			<property name="width" code="pwid" type="real" access="r" description="Returns the width of the object."/>
		</class>
		<class name="bar group" code="cg05" inherits="chart group" plural="bar groups"/>
		<class name="chart area" code="X284" description="Represents the chart area of a chart. The chart area on a 2-D chart contains the axes, the chart title, the axis titles, and the legend. The chart area on a 3-D chart contains the chart title and the legend; it doesn't include the plot area ." plural="chart areas">
			<property name="auto scale font" code="1992" type="boolean" description="Returns or sets if the text in the object changes font size when the object size changes."/>
			<property name="border" code="X251" type="border" access="r" description="Returns a border object that represents the border of the object."/>
			<property name="chart fill format object" code="XCFf" type="chart fill format" access="r" description="Returns a chart fill format object for this object."/>
			<property name="chart format" code="X115" type="chart format" access="r" description="Returns a chart format object that contains chart formatting properties for the chart area."/>
			<property name="font object" code="XftO" type="font" access="r" description="Returns a font object that represents the font of the specified object."/>
			<property name="height" code="hght" type="real" description="Returns or sets the height of the object."/>
			<property name="interior object" code="XitO" type="interior" access="r" description="Returns an interior object that represents the interior of the specified object."/>
			<property name="left position" code="plft" type="real" description="Returns or sets the left position of the specified object, in points."/>
			<property name="name" code="pnam" type="text" access="r" description="Returns the name of the object."/>
			<property name="rounded corners" code="2028" type="boolean" access="r" description="Returns or sets if the chart area has rounded corners."/>
			<property name="shadow" code="shad" type="boolean" description="Returns or sets if the object has a shadow."/>
			<property name="top" code="ptop" type="real" description="Returns or sets the top position of the specified object, in points."/>
			<property name="width" code="pwid" type="real" description="Returns or sets  the width of the object."/>
		</class>
		<class name="chart fill format" code="X253" description="Used only with charts. Represents fill formatting for chart elements." plural="chart fill formats">
			<property name="back color" code="1019" access="r" description="Returns the background color.">
				<type type="integer" list="yes"/>
			</property>
			<property name="background scheme color" code="bgSC" type="integer" description="Returns or sets the background color as an index in the current color scheme."/>
			<property name="chart fill format type" code="2221" type="MsoFillType" access="r" description="The fill type. "/>
			<property name="fore color" code="1027" access="r" description="Returns the foreground color.">
				<type type="integer" list="yes"/>
			</property>
			<property name="foreground scheme color" code="fgSC" type="integer" description="Returns or sets the foreground color as an index in the current color scheme."/>
			<property name="gradient color type" code="1087" type="MsoGradientColorType" access="r" description="Returns the gradient color type for the specified fill."/>
			<property name="gradient degree" code="1088" type="real" access="r" description="Returns the gradient degree of the specified one-color shaded fill as a floating-point value from 0.0 dark through 1.0 light."/>
			<property name="gradient style" code="XgSy" type="MsoGradientStyle" access="r" description="Returns the gradient style for the specified fill."/>
			<property name="gradient variant" code="1090" type="integer" access="r" description="Returns the shade variant for the specified fill as an integer value from 1 through 4."/>
			<property name="pattern" code="1028" type="MsoPatternType" access="r" description="Returns the fill pattern."/>
			<property name="preset gradient type" code="1091" type="MsoPresetGradientType" access="r" description="Returns the preset gradient type for the specified fill."/>
			<property name="preset texture" code="1092" type="MsoPresetTexture" access="r" description="Returns the preset texture for the specified fill."/>
			<property name="texture name" code="1093" type="text" access="r" description="Returns the name of the custom texture file for the specified fill."/>
			<property name="texture type" code="1094" type="MsoTextureType" access="r" description="Returns the texture type for the specified fill."/>
			<property name="visible" code="pvis" type="boolean" description="Returns or sets if the specified object is visible."/>
		</class>
		<class name="chart format" code="X115" description="Provides access to the Office Art formatting for chart elements.">
			<property name="fill format" code="X110" type="fill format" access="r" description="Returns a fill format object for the parent chart element that contains fill formatting properties for the chart element."/>
			<property name="glow format" code="DGoF" type="glow format" access="r" description="Returns a glow format object for a specified chart that contains glow formatting properties for the chart."/>
			<property name="line format" code="X103" type="line format" access="r" description="Returns a line format object that contains line formatting properties for the specified chart element."/>
			<property name="shadow format" code="X107" type="shadow format" access="r" description="Returns a shadow format object that contains shadow formatting properties for the chart element."/>
			<property name="shape text frame" code="X295" type="shape text frame" access="r" description="Returns a shape text frame object that contains the alignment and anchoring properties for the specified chart."/>
			<property name="soft edge format" code="DSeF" type="soft edge format" access="r" description="Returns the formatting properties for a soft edge effect."/>
			<property name="threeD format" code="X109" type="threeD format" access="r" description="Returns a threeD format object that contains 3-D-effect formatting properties for the specified chart."/>
		</class>
		<class name="chart group" code="X258" description="Represents one or more series plotted in a chart with the same format. A chart contains one or more chart groups, each chart group contains one or more series, and each series contains one or more points." plural="chart groups">
			<element type="series"/>
			<property name="axis group" code="AgOb" type="XlAxisGroup"/>
			<property name="bubble scale" code="2277" type="integer" description="Returns or sets the scale factor for bubbles in the specified chart group. Can be an integer value from zero to 300, corresponding to a percentage of the default size. Applies only to bubble charts."/>
			<property name="doughnut hole size" code="2260" type="integer" description="Returns or sets the size of the hole in a doughnut chart group. The hole size is expressed as a percentage of the chart size, between 10 and 90 percent."/>
			<property name="down bars object" code="XdbO" type="down bars" access="r" description="Returns a down bars object that represents the down bars on a line chart. Applies only to line charts."/>
			<property name="drop lines object" code="XdlO" type="drop lines" access="r" description="Returns a drop lines object that represents the drop lines for a series on a line chart or area chart. Applies only to line charts or area charts."/>
			<property name="entry_index" code="MSix" type="integer" access="r" description="Returns the index number of the object within the elements of the parent object."/>
			<property name="first slice angle" code="2263" type="integer" description="Returns or sets the angle of the first pie-chart or doughnut-chart slice, in degrees, clockwise from vertical. Applies only to pie, 3-D pie, and doughnut charts."/>
			<property name="gap width" code="2264" type="integer" description="Returns or sets: For bar and column charts, the space between bar or column clusters, as a percentage of the bar or column width. For pie of pie and bar of pie charts, the space between the primary and secondary sections of the chart."/>
			<property name="has drop lines" code="2265" type="boolean" description="Returns or sets if the line chart or area chart has drop lines. Applies only to line and area charts."/>
			<property name="has hi lo lines" code="2266" type="boolean" description="Returns or sets if the line chart has high-low lines. Applies only to line charts."/>
			<property name="has radar axis labels" code="2267" type="boolean" description="Returns or sets if a radar chart has axis labels. Applies only to radar charts."/>
			<property name="has series lines" code="2268" type="boolean" description="Returns or sets if a stacked column chart or bar chart has series lines or if a pie of pie chart or bar of pie chart has connector lines between the two sections. Applies only to stacked column charts, bar charts, pie of pie charts, or bar of pie charts."/>
			<property name="has threeD shading" code="2282" type="boolean" description="Returns or sets if the chart group has three-dimensional shading."/>
			<property name="has up down bars" code="2269" type="boolean" description="Returns or sets if a line chart has up and down bars. Applies only to line charts."/>
			<property name="hilo lines Object" code="XhlO" type="hilo lines" access="r" description="Returns a hilo lines object that represents the high-low lines for a series on a line chart."/>
			<property name="overlap" code="2271" type="integer" description="Returns or sets how bars and columns are positioned. Can be a value between -100 and 100. Applies only to 2-D bar and 2-D column charts."/>
			<property name="radar axis labels" code="2272" type="tick labels" access="r" description="Returns a tick labels object that represents the radar axis labels for the specified chart group."/>
			<property name="second plot size" code="2281" type="integer" description="Returns or sets the size of the secondary section of either a pie of pie chart or a bar of pie chart, as a percentage of the size of the primary pie. Can be a value from 5 to 200. "/>
			<property name="series lines object" code="XslO" type="series lines" access="r" description="Returns a series lines object that represents the series lines for a stacked bar chart or a stacked column chart. Applies only to stacked bar and stacked column charts."/>
			<property name="show negative bubbles" code="2278" type="boolean" description="Returns or sets if negative bubbles are shown for the chart group. Valid only for bubble charts."/>
			<property name="size represents" code="2276" type="XlSizeRepresents" description="Returns or sets what the bubble size represents on a bubble chart."/>
			<property name="split type" code="2279" type="XlChartSplitType" description="Returns or sets the way the two sections of either a pie of pie chart or a bar of pie chart are split."/>
			<property name="split value" code="2280" type="integer" description="Returns or sets the threshold value separating the two sections of either a pie of pie chart or a bar of pie chart."/>
			<property name="up bars object" code="XubO" type="up bars" access="r" description="Returns an up bars object that represents the up bars on a line chart. Applies only to line charts."/>
			<property name="vary by categories" code="2275" type="boolean" description="Returns or sets if Microsoft Excel assigns a different color or pattern to each data marker. The chart must contain only one series."/>
		</class>
		<class name="chart object" code="X221" description="Represents an embedded chart on a worksheet. The chart object object acts as a container for a chart object. Properties and methods for the chart object object control the appearance and size of the embedded chart on the worksheet." plural="chart objects">
			<property name="border" code="X251" type="border" access="r" description="Returns a border object that represents the border of the object."/>
			<property name="bottom right cell" code="1983" type="range" access="r" description="Returns a range object that represents the cell that lies under the lower-right corner of the object."/>
			<property name="chart" code="X119" type="chart" access="r" description="Returns a chart object that represents the chart contained in the object."/>
			<property name="enabled" code="enbl" type="boolean" description="Returns or sets if the object is enabled."/>
			<property name="entry_index" code="MSix" type="integer" access="r" description="Returns the index number of the object within the elements of the parent object."/>
			<property name="height" code="hght" type="real" description="Returns or set the height of the object."/>
			<property name="interior object" code="XitO" type="interior" access="r" description="Returns an interior object that represents the interior of the specified object."/>
			<property name="left position" code="plft" type="real" description="Returns or sets the position of the specified object, in points."/>
			<property name="locked" code="1584" type="boolean" description="Returns or sets if the object is locked, if false the object can be modified when the sheet is protected."/>
			<property name="name" code="pnam" type="text" description="Returns or sets the name of the object."/>
			<property name="on action" code="BCOa" type="text" description="Returns or sets the name of a string of AppleScript commands that will be executed when the object is clicked on. Please note that if AppleScript commands are set they will not be saved with the document."/>
			<property name="placement" code="1986" type="XlPlacement" description="Returns or sets the way the object is attached to the cells below it."/>
			<property name="print object" code="1987" type="boolean" description="Returns or sets if this object is printed."/>
			<property name="protect chart object" code="2107" type="boolean" description="Returns or sets if the embedded chart frame cannot be moved, resized, or deleted."/>
			<property name="rounded corners" code="2028" type="boolean" description="Returns or sets if the embedded chart has rounded corners."/>
			<property name="shadow" code="shad" type="boolean" description="Returns or sets if the if the object has a shadow."/>
			<property name="top" code="ptop" type="real" description="Returns or sets the distance from the top edge of the object to the top of row 1, on a worksheet, or the top of the chart area, on a chart."/>
			<property name="top left cell" code="1989" type="range" access="r" description="Returns a range object that represents the cell that lies under the upper-left corner of the specified object. "/>
			<property name="visible" code="pvis" type="boolean" description="Returns or sets if the object is visible."/>
			<property name="width" code="pwid" type="real" description="Returns or sets  the width of the object."/>
			<property name="z order position" code="2364" type="integer" access="r" description="Returns the z-order position of the object."/>
		</class>
		<class name="chart sheet" code="XcSH" description="A chart sheet is a worksheet that contains only a chart." inherits="chart" plural="chart sheets">
			<property name="chart" code="X119" type="chart" access="r" description="Returns the chart for this chart sheet."/>
			<property name="worksheet type" code="1755" type="XlSheetType" access="r" description="Returns the type of this worksheet."/>
		</class>
		<class name="chart title" code="X256" description="Represents the chart title." plural="chart titles">
			<element type="character"/>
			<property name="auto scale font" code="1992" type="boolean" description="Returns or sets  if the text in the object changes font size when the object size changes."/>
			<property name="border" code="X251" type="border" access="r" description="Returns a border object that represents the border of the object."/>
			<property name="caption" code="1108" type="text" description="Returns or sets the chart title text."/>
			<property name="chart fill format object" code="XCFf" type="chart fill format" access="r" description="Returns a chart fill format object for this object."/>
			<property name="chart format" code="X115" type="chart format" access="r" description="Returns a chart format object that contains chart formatting properties for the chart title."/>
			<property name="chart title text" code="XctT" type="text" description="Returns or sets the text for the specified object."/>
			<property name="font object" code="XftO" type="font" access="r" description="Returns a font object that represents the font of the specified object."/>
			<property name="formula" code="1562" type="text" description="Returns or sets the object's formula, in A1-style notation and in the language of the macro."/>
			<property name="formula local" code="1566" type="text" description="Returns or sets the formula for the object, using A1-style references in the language of the user."/>
			<property name="formula r1c1" code="1567" type="text" description="Returns or sets the formula for the object, using R1C1-style notation in the language of the macro."/>
			<property name="formula r1c1 local" code="1568" type="text" description="Returns or sets the formula for the object, using R1C1-style notation in the language of the user."/>
			<property name="height" code="hght" type="real" access="r" description="Returns the height of the object."/>
			<property name="horizontal alignment" code="1575" type="XlHAlign" description="Returns or sets the horizontal alignment for the object."/>
			<property name="include in layout" code="1985" type="boolean" description="Returns or sets if a chart title will occupy the chart layout space when a chart layout is being determined."/>
			<property name="interior object" code="XitO" type="interior" access="r" description="Returns an interior object that represents the interior of the specified object."/>
			<property name="left position" code="plft" type="real" description="Returns or sets the left position of the specified object, in points."/>
			<property name="name" code="pnam" type="text" access="r" description="Returns the name of the object."/>
			<property name="orientation" code="1596" type="XlOrientation" description="May also be a number value from -90 to 90 degrees."/>
			<property name="position" code="posn" type="XlChartElementPosition" description="Returns or sets the position of the chart title on the chart."/>
			<property name="reading order" code="1639" type="XLDefaultSheetDir" description="Returns or sets the reading order for the specified object."/>
			<property name="shadow" code="shad" type="boolean" description="Returns or sets if the object has a shadow."/>
			<property name="top" code="ptop" type="real" description="Returns or sets the top position of the specified object, in points."/>
			<property name="vertical alignment" code="1631" type="XlVerticalAlignmentTarget" description="Returns or sets the vertical alignment of the object."/>
			<property name="width" code="pwid" type="real" access="r" description="Returns the width of the object."/>
		</class>
		<class name="chart" code="X119" description="Represents a chart in a workbook. The chart can be either an embedded chart, contained in a chart object, or a separate chart sheet." plural="charts">
			<element type="shape"/>
			<element type="arc"/>
			<element type="area group"/>
			<element type="bar group"/>
			<element type="button"/>
			<element type="chart group"/>
			<element type="chart object"/>
			<element type="checkbox"/>
			<element type="column group"/>
			<element type="doughnut group"/>
			<element type="dropdown"/>
			<element type="groupbox"/>
			<element type="hyperlink"/>
			<element type="label"/>
			<element type="line group"/>
			<element type="line"/>
			<element type="listbox"/>
			<element type="option button"/>
			<element type="oval"/>
			<element type="pie group"/>
			<element type="radar group"/>
			<element type="rectangle"/>
			<element type="scrollbar"/>
			<element type="series"/>
			<element type="spinner"/>
			<element type="textbox"/>
			<element type="xy group"/>
			<property name="area threeD group" code="1663" type="chart group" access="r" description="Returns a chart group object that represents the area chart group on a 3-D chart."/>
			<property name="auto scaling" code="1665" type="boolean" description="Returns or sets if Microsoft Excel scales a 3-D chart so that it's closer in size to the equivalent 2-D chart. The chart's right angle axes property must be true."/>
			<property name="back wall" code="2429" type="walls" access="r" description="Returns a walls object that allows the user to individually format the back wall of a 3-D chart."/>
			<property name="bar shape" code="1713" type="XlBarShape" description="Returns or sets the shape used with the 3-D bar or column chart."/>
			<property name="bar threeD group" code="1668" type="chart group" access="r" description="Returns a chart group object that represents the bar chart group on a 3-D chart."/>
			<property name="chart area object" code="1670" type="chart area" access="r" description="Returns a chart area object that represents the complete chart area for the chart."/>
			<property name="chart style" code="2433" type="integer" description="Returns or sets the chart type."/>
			<property name="chart title" code="X256" type="chart title" access="r" description="Returns a chart title object that represents the title of the specified chart."/>
			<property name="chart type" code="1708" type="XlChartType" description="Returns or sets the chart type."/>
			<property name="column threeD group" code="1675" type="chart group" access="r" description="Returns a chart group object that represents the column chart group on a 3-D chart."/>
			<property name="corners object" code="XcrO" type="corners" access="r" description="Returns a corners object that represents the corners of a 3-D chart."/>
			<property name="data table object" code="1678" type="data table" access="r" description="Returns a data table object that represents the chart data table."/>
			<property name="depth percent" code="1679" type="integer" description="Returns or sets the depth of a 3-D chart as a percentage of the chart width, between 20 and 2000 percent."/>
			<property name="display blanks as" code="1681" type="XlDisplayBlanksAs" description="Returns or sets the way that blank cells are plotted on a chart."/>
			<property name="elevation" code="1683" type="integer" description="Returns or sets the elevation of the 3-D chart view, in degrees."/>
			<property name="entry_index" code="MSix" type="integer" access="r" description="Returns the index number of the object within the elements of the parent object."/>
			<property name="floor object" code="1455" type="floor" access="r" description="Returns a floor object that represents the floor of the 3-D chart."/>
			<property name="gap depth" code="1684" type="integer" description="Returns or sets the distance between the data series in a 3-D chart, as a percentage of the marker width. The value of this property must be between 0 and 500."/>
			<property name="has data table" code="1687" type="boolean" description="Returns or sets if the chart has a data table."/>
			<property name="has legend" code="1688" type="boolean" description="Returns or sets if the chart has a legend."/>
			<property name="has title" code="1689" type="boolean" description="Returns or sets if the chart has a title."/>
			<property name="height percent" code="1690" type="integer" description="Returns or sets the height of a 3-D chart as a percentage of the chart width, between 5 and 500 percent."/>
			<property name="legend object" code="1691" type="legend" access="r" description="Returns a legend object that represents the legend for the chart."/>
			<property name="line threeD group" code="C3DG" type="chart group" access="r" description="Returns a chart group object that represents the line chart group on a 3-D chart."/>
			<property name="name" code="pnam" type="text" description="Returns or sets the name of the chart."/>
			<property name="next" code="1591" type="chart" access="r" description="Returns a worksheet object that represents the next sheet."/>
			<property name="page setup object" code="1654" type="page setup" access="r" description="Returns the page setup object associated with this chart."/>
			<property name="perspective" code="1071" type="integer" description="Returns or sets the perspective for the 3-D chart view. Must be between 0 and 100. This property is ignored if the right angle axes property is true."/>
			<property name="pie threeD group" code="1697" type="chart group" access="r" description="Returns a chart group object that represents the pie chart group on a 3-D chart."/>
			<property name="plot area object" code="1699" type="plot area" access="r" description="Returns a plot area object that represents the plot area of a chart."/>
			<property name="plot by" code="1714" type="XlRowCol" description="Returns or sets the way columns or rows are used as data series on the chart."/>
			<property name="plot visible only" code="1700" type="boolean" description="Returns or sets if only visible cells are plotted. False if both visible and hidden cells are plotted."/>
			<property name="previous" code="1606" type="null" access="r" description="Returns a worksheet object that represents the previous sheet."/>
			<property name="protect contents" code="1656" type="boolean" access="r" description="Returns true if the contents of the sheet are protected."/>
			<property name="protect data" code="1716" type="boolean" description="Returns or sets if series formulas cannot be modified by the user."/>
			<property name="protect drawing objects" code="1657" type="boolean" access="r" description="Returns true if shapes are protected."/>
			<property name="protect formatting" code="1715" type="boolean" description="Returns or sets if chart formatting cannot be modified by the user."/>
			<property name="protect goal seek" code="1717" type="boolean" description="Returns or sets if the user cannot modify chart data points with mouse actions."/>
			<property name="protect selection" code="1718" type="boolean" description="Returns or sets if chart elements cannot be selected."/>
			<property name="protection mode" code="1658" type="boolean" access="r" description="Returns true if user-interface-only protection is turned on. To turn on user interface protection, use the protect method with the user interface only argument set to true."/>
			<property name="right angle axes" code="1702" type="boolean" description="Returns or sets if the chart axes are at right angles, independent of chart rotation or elevation. Applies only to 3-D line, column, and bar charts."/>
			<property name="rotation" code="1703" type="integer" description="The rotation of the 3D chart view.  The value of must be from 0 to 360."/>
			<property name="sheet tab" code="2551" type="tab" access="r" description="Returns the sheet tab of the chart sheet"/>
			<property name="show data labels over maximum" code="2434" type="boolean" description="Returns or sets whether to show the data labels when the value is greater than the maximum value on the value axis."/>
			<property name="show window" code="1706" type="boolean" description="Returns or sets if the embedded chart is displayed in a separate window. The Chart object used with this property must refer to an embedded chart."/>
			<property name="side wall" code="2428" type="walls" access="r" description="Returns a walls object that allows the user to individually format the side wall of a 3-D chart."/>
			<property name="size with window" code="1705" type="boolean" description="Returns or sets if Microsoft Excel resizes the chart to match the size of the chart sheet window. False if the chart size isn't attached to the window size. Applies only to chart sheets, doesn't apply to embedded charts."/>
			<property name="surface group" code="1707" type="chart group" access="r" description="Returns a chart group object that represents the surface chart group of a 3-D chart."/>
			<property name="visible" code="pvis" type="XlSheetVisibility" description="Returns or sets if the chart is visible."/>
			<property name="walls and gridlines twoD" code="1711" type="boolean" description="Returns or sets if gridlines are drawn two-dimensionally on a 3-D chart."/>
			<property name="walls object" code="1710" type="walls" access="r" description="Returns a walls object that represents the walls of the 3-D chart."/>
		</class>
		<class name="column group" code="cg04" inherits="chart group" plural="column groups"/>
		<class name="corners" code="X272" description="Represents the corners of a 3-D chart.">
			<property name="name" code="pnam" type="text" access="r" description="Returns the name of this object."/>
		</class>
		<class name="data label" code="X265" description="Represents the data label on a chart point or trendline." plural="data labels">
			<element type="character"/>
			<property name="auto scale font" code="1992" type="boolean" description="Returns or sets if the text in the object changes font size when the object size changes."/>
			<property name="auto text" code="2313" type="boolean" description="Returns or sets if the object automatically generates appropriate text based on context."/>
			<property name="border" code="X251" type="border" access="r" description="Returns a border object that represents the border of the object."/>
			<property name="caption" code="1108" type="text" description="Returns or sets the caption of the object."/>
			<property name="chart fill format object" code="XCFf" type="chart fill format" access="r" description="Returns a chart fill format object for this object."/>
			<property name="chart format" code="X115" type="chart format" access="r" description="Returns a chart format object that contains chart formatting properties for the data label."/>
			<property name="data label text" code="XdlT" type="text" description="Returns or sets the text for this object."/>
			<property name="data label type" code="2316" type="XlDataLabelsType" description="Returns or sets the type of the data label."/>
			<property name="font object" code="XftO" type="font" access="r" description="Returns a font object that represents the font of the specified object."/>
			<property name="formula" code="1562" type="text" description="Returns or sets the object's formula, in A1-style notation and in the language of the macro."/>
			<property name="formula local" code="1566" type="text" description="Returns or sets the formula for the object, using A1-style references in the language of the user."/>
			<property name="formula r1c1" code="1567" type="text" description="Returns or sets the formula for the object, using R1C1-style notation in the language of the macro."/>
			<property name="formula r1c1 local" code="1568" type="text" description="Returns or sets the formula for the object, using R1C1-style notation in the language of the user."/>
			<property name="height" code="hght" type="real" access="r" description="Returns the height of the object."/>
			<property name="horizontal alignment" code="1575" type="XlHAlign" description="Returns or sets the horizontal alignment for the object."/>
			<property name="interior object" code="XitO" type="interior" access="r" description="Returns an interior object that represents the interior of the specified object."/>
			<property name="left position" code="plft" type="real" description="Returns or sets the left position of the specified object, in points."/>
			<property name="name" code="pnam" type="text" access="r" description="Returns the name of the object."/>
			<property name="number format" code="1593" type="text" description="Returns or sets the format code for the object."/>
			<property name="number format linked" code="2314" type="boolean" description="Returns or sets if the number format is linked to the cells, so that the number format changes in the labels when it changes in the cells."/>
			<property name="number format local" code="1594" type="text" description="Returns or sets the format code for the object as a string in the language of the user."/>
			<property name="orientation" code="1596" type="integer" description="The text orientation.  Can be a number value from -90 to 90 degrees."/>
			<property name="position" code="posn" type="XlDataLabelPosition" description="Returns or sets the position of the specified object."/>
			<property name="reading order" code="1639" type="XLDefaultSheetDir" description="Returns or sets the reading order for the specified object."/>
			<property name="shadow" code="shad" type="boolean" description="Returns or sets if the object has a shadow."/>
			<property name="show legend key" code="2315" type="boolean" description="Returns or sets if the data label legend key is visible."/>
			<property name="top" code="ptop" type="real" description="Returns or sets the top position of the specified object, in points."/>
			<property name="vertical alignment" code="1631" type="XlVerticalAlignmentTarget" description="Returns or sets the vertical alignment of the object."/>
			<property name="width" code="pwid" type="real" access="r" description="Returns the width of the object."/>
		</class>
		<class name="data table" code="X287" description="Represents a chart data table." plural="data tables">
			<property name="auto scale font" code="1992" type="boolean" description="Returns or sets if the text in the object changes font size when the object size changes."/>
			<property name="border" code="X251" type="border" access="r" description="Returns a border object that represents the border of the object."/>
			<property name="chart format" code="X115" type="chart format" access="r" description="Returns a chart format object that contains chart formatting properties for the data table."/>
			<property name="font object" code="XftO" type="font" access="r" description="Returns a font object that represents the font of the specified object."/>
			<property name="has border horizontal" code="2333" type="boolean" description="Returns or sets if the chart data table has horizontal cell borders. "/>
			<property name="has border outline" code="2335" type="boolean" description="Returns or sets if the chart data table has outline borders."/>
			<property name="has border vertical" code="2334" type="boolean" description="Returns or sets if the chart data table has vertical cell borders. "/>
			<property name="show legend key" code="2315" type="boolean" description="Returns or sets if the data label legend key is visible."/>
		</class>
		<class name="display unit label" code="X299" description="Represents a unit label on an axis in the specified chart. Unit labels are useful for charting large values-- for example, in the millions or billions." plural="display unit labels">
			<element type="character"/>
			<property name="auto scale font" code="1992" type="boolean" description="Returns or sets if the text in the object changes font size when the object size changes."/>
			<property name="border" code="X251" type="border" access="r" description="Returns a border object that represents the border of the object."/>
			<property name="caption" code="1108" type="text" description="Returns or sets the caption for the object."/>
			<property name="chart fill format object" code="XCFf" type="chart fill format" access="r" description="Returns a chart fill format object for this object."/>
			<property name="chart format" code="X115" type="chart format" access="r" description="Returns a chart format object that contains chart formatting properties for the chart title."/>
			<property name="display label unit text" code="DLuT" type="text" description="Returns or sets the text for this object."/>
			<property name="font object" code="XftO" type="font" access="r" description="Returns a font object that represents the font of the specified object."/>
			<property name="horizontal alignment" code="1575" type="XlHAlign" description="Returns or sets the horizontal alignment for the object."/>
			<property name="interior object" code="XitO" type="interior" access="r" description="Returns an interior object that represents the interior of the specified object."/>
			<property name="left position" code="plft" type="real" description="Returns or sets the left position of the specified object, in points."/>
			<property name="name" code="pnam" type="text" access="r" description="Returns the name of the object."/>
			<property name="orientation" code="1596" type="integer" description="The text orientation.  Can be a number value from -90 to 90 degrees."/>
			<property name="position" code="posn" type="XlChartElementPosition" description="Returns or sets the position of the chart title on the chart."/>
			<property name="reading order" code="1639" type="XLDefaultSheetDir" description="Returns or sets the reading order for the specified object."/>
			<property name="shadow" code="shad" type="boolean" description="Returns or sets if the object has a shadow."/>
			<property name="top" code="ptop" type="real" description="Returns or sets the top position of the specified object, in points."/>
			<property name="vertical alignment" code="1631" type="XlVerticalAlignmentTarget" description="Returns or sets the vertical alignment of the object."/>
		</class>
		<class name="doughnut group" code="cg03" inherits="chart group" plural="doughnut groups"/>
		<class name="down bars" code="X279" description="Represents the down bars in a chart group. Down bars connect points on the first series in the chart group with lower values on the last series, the lines go down from the first series.">
			<property name="border" code="X251" type="border" access="r" description="Returns a border object that represents the border of the object."/>
			<property name="chart fill format object" code="XCFf" type="chart fill format" access="r" description="Returns a chart fill format object for this object."/>
			<property name="chart format" code="X115" type="chart format" access="r" description="Returns a chart format object that contains chart formatting properties for the down bars."/>
			<property name="interior object" code="XitO" type="interior" access="r" description="Returns an interior object that represents the interior of the specified object."/>
			<property name="name" code="pnam" type="text" access="r" description="Returns the name of the object."/>
		</class>
		<class name="drop lines" code="X276" description="Represents the drop lines in a chart group. Drop lines connect the points in the chart with the x-axis. Only line and area chart groups can have drop lines.">
			<property name="border" code="X251" type="border" access="r" description="Returns a border object that represents the border of the object."/>
			<property name="chart format" code="X115" type="chart format" access="r" description="Returns a chart format object that contains chart formatting properties for the drop lines."/>
			<property name="name" code="pnam" type="text" access="r" description="Returns the name of this object."/>
		</class>
		<class name="error bars" code="X286" description="Represents the error bars on a chart series. Error bars indicate the degree of uncertainty for chart data.">
			<property name="border" code="X251" type="border" access="r" description="Returns a border object that represents the border of the object."/>
			<property name="chart format" code="X115" type="chart format" access="r" description="Returns a chart format object that contains chart formatting properties for the error bars."/>
			<property name="end style" code="2332" type="XlEndStyleCap" description="Returns or sets the end style for the error bars."/>
			<property name="name" code="pnam" type="text" access="r" description="Returns the name of the object."/>
		</class>
		<class name="floor" code="X280" description="Represents the floor of a 3-D chart." plural="floors">
			<property name="border" code="X251" type="border" access="r" description="Returns a border object that represents the border of the object."/>
			<property name="chart fill format object" code="XCFf" type="chart fill format" access="r" description="Returns a chart fill format object for this object."/>
			<property name="chart format" code="X115" type="chart format" access="r" description="Returns a chart format object that contains chart formatting properties for the floor."/>
			<property name="interior object" code="XitO" type="interior" access="r" description="Returns an interior object that represents the interior of the specified object."/>
			<property name="name" code="pnam" type="text" access="r" description="Returns the name of the object."/>
			<property name="picture type" code="2292" type="XlChartPictureType" description="Returns or sets the way pictures are displayed on a column or bar picture chart or on the walls and faces of a 3-D chart."/>
			<property name="thickness" code="Thck" type="integer" description="Returns or sets  the thickness of the floor."/>
		</class>
		<class name="gridlines" code="X275" description="Represents major or minor gridlines on a chart axis. Gridlines extend the tick marks on a chart axis to make it easier to see the values associated with the data markers.">
			<property name="border" code="X251" type="border" access="r" description="Returns a border object that represents the border of the object."/>
			<property name="chart format" code="X115" type="chart format" access="r" description="Returns a chart format object that contains chart formatting properties for the gridlines."/>
			<property name="name" code="pnam" type="text" access="r" description="Returns the name of this object."/>
		</class>
		<class name="hilo lines" code="X274" description="Represents the high-low lines in a chart group. High-low lines connect the highest point with the lowest point in every category in the chart group. Only 2-D line groups can have high-low lines.">
			<property name="border" code="X251" type="border" access="r" description="Returns a border object that represents the border of the object."/>
			<property name="chart format" code="X115" type="chart format" access="r" description="Returns a chart format object that contains chart formatting properties for the hilo lines."/>
			<property name="name" code="pnam" type="text" access="r" description="Returns the name of this object."/>
		</class>
		<class name="interior" code="X252" description="Represents the interior of an object." plural="interiors">
			<property name="color" code="colr" description="Returns or sets the primary color of the object.">
				<type type="integer" list="yes"/>
			</property>
			<property name="color index" code="1098" type="XlColorIndex" description="Returns or sets the color of the interior. The color is specified as an index value into the current color palette."/>
			<property name="invert if negative" code="2218" type="boolean" description="Returns or sets if Microsoft Excel inverts the pattern in the item when it corresponds to a negative number."/>
			<property name="linear gradient" code="X302" type="linear gradient" access="r" description="Returns or sets the Gradient property of an Interior object of a selection."/>
			<property name="pattern" code="1028" type="XlPattern" description="Returns or sets the interior pattern."/>
			<property name="pattern color" code="2219" description="Returns or sets the color of the interior pattern as an RGB value.">
				<type type="integer" list="yes"/>
			</property>
			<property name="pattern color index" code="2220" type="XlColorIndex" description="Returns or sets the color of the interior pattern as an index into the current color palette."/>
			<property name="pattern theme color" code="2536" type="XlThemeColor" description="Returns or sets a theme color pattern for an Interior object."/>
			<property name="pattern tint and shade" code="2537" type="real" description="Returns or sets a tint and shade pattern for an Interior object."/>
			<property name="rectangular gradient" code="X303" type="rectangular gradient" access="r" description="Returns or sets the Gradient property of an Interior object of a selection."/>
			<property name="theme color" code="DThC" type="XlThemeColor" description="Returns or sets the theme color in the applied color scheme that is associated with the specified object."/>
			<property name="tint and shade" code="2535" type="real" description="Returns or sets a Single that lightens or darkens a color."/>
		</class>
		<class name="leader lines" code="X277" description="Represents leader lines on a chart. Leader lines connect data labels to data points.">
			<property name="border" code="X251" type="border" access="r" description="Returns a border object that represents the border of the object."/>
			<property name="chart format" code="X115" type="chart format" access="r" description="Returns a chart format object that contains chart formatting properties for the leader lines."/>
		</class>
		<class name="legend entry" code="X267" description="Represents a legend entry in a chart legend." plural="legend entries">
			<property name="auto scale font" code="1992" type="boolean" description="Returns or sets if the text in the object changes font size when the object size changes."/>
			<property name="entry_index" code="MSix" type="integer" access="r" description="Returns the index number of the object within the elements of the parent object."/>
			<property name="height" code="hght" type="real" access="r" description="Returns the height of the object."/>
			<property name="left position" code="plft" type="real" access="r" description="Returns the left position of the specified object, in points."/>
			<property name="top" code="ptop" type="real" access="r" description="Returns the top position of the specified object, in points."/>
			<property name="width" code="pwid" type="real" access="r" description="Returns the width of the object."/>
		</class>
		<class name="legend key" code="X269" description="Represents a legend key in a chart legend. Each legend key is a graphic that visually links a legend entry with its associated series or trendline in the chart." plural="legend keys">
			<property name="border" code="X251" type="border" access="r" description="Returns a border object that represents the border of the object."/>
			<property name="chart fill format object" code="XCFf" type="chart fill format" access="r" description="Returns a chart fill format object for this object."/>
			<property name="chart format" code="X115" type="chart format" access="r" description="Returns a chart format object that contains chart formatting properties for the legend key."/>
			<property name="height" code="hght" type="real" access="r" description="Returns the height of the object."/>
			<property name="interior object" code="XitO" type="interior" access="r" description="Returns an interior object that represents the interior of the specified object."/>
			<property name="invert if negative" code="2218" type="boolean" description="Returns or sets if Microsoft Excel inverts the pattern in the item when it corresponds to a negative number."/>
			<property name="left position" code="plft" type="real" access="r" description="Returns the left position of the specified object, in points."/>
			<property name="marker background color" code="2286" description="Returns or sets the marker background color as an RGB value. Applies only to line, scatter, and radar charts.">
				<type type="integer" list="yes"/>
			</property>
			<property name="marker background color index" code="2287" type="XlColorIndex" description="Returns or sets the marker background color as an index into the current color palette, or as one of the following constants: color index automatic or color index none. Applies only to line, scatter, and radar charts."/>
			<property name="marker foreground color" code="2288" description="Returns or sets the foreground color of the marker as an RGB value. Applies only to line, scatter, and radar charts.">
				<type type="integer" list="yes"/>
			</property>
			<property name="marker foreground color index" code="2289" type="XlColorIndex" description="Returns or sets the marker foreground color as an index into the current color palette, or as one of the following constants: color index automatic or color index none. Applies only to line, scatter, and radar charts."/>
			<property name="marker size" code="2290" type="integer" description="Returns or sets the data-marker size, in points."/>
			<property name="marker style" code="2291" type="XlMarkerStyle" description="Returns or sets the marker style for a point or series in a line chart, scatter chart, or radar chart."/>
			<property name="picture type" code="2292" type="XlChartPictureType" description="Returns or sets the way pictures are displayed on a column or bar picture chart or on the walls and faces of a 3-D chart."/>
			<property name="picture unit" code="2293" type="real" description="Returns or sets the unit for each picture on the chart if the picture type property is set to chart picture type stack scale, if not, this property is ignored."/>
			<property name="shadow" code="shad" type="boolean" description="Returns or sets if the object has a shadow."/>
			<property name="smooth" code="2304" type="boolean" description="Returns or sets if curve smoothing is turned on for the line chart or scatter chart. Applies only to line and scatter charts."/>
			<property name="top" code="ptop" type="real" access="r" description="Returns the top position of the specified object, in points."/>
			<property name="width" code="pwid" type="real" access="r" description="Returns the width of the object."/>
		</class>
		<class name="legend" code="X285" description="Represents the legend in a chart. Each chart can have only one legend." plural="legends">
			<element type="legend entry"/>
			<property name="auto scale font" code="1992" type="boolean" description="Returns or sets if the text in the object changes font size when the object size changes."/>
			<property name="border" code="X251" type="border" access="r" description="Returns a border object that represents the border of the object."/>
			<property name="chart fill format object" code="XCFf" type="chart fill format" access="r" description="Returns a chart fill format object for this object."/>
			<property name="chart format" code="X115" type="chart format" access="r" description="Returns a chart format object that contains chart formatting properties for the legend."/>
			<property name="font object" code="XftO" type="font" access="r" description="Returns a font object that represents the font of the specified object."/>
			<property name="height" code="hght" type="real" description="Returns or sets the height of the object."/>
			<property name="include in layout" code="1985" type="boolean" description="Returns or sets if a legend will occupy the chart layout space when a chart layout is being determined."/>
			<property name="interior object" code="XitO" type="interior" access="r" description="Returns an interior object that represents the interior of the specified object."/>
			<property name="left position" code="plft" type="real" description="Returns or sets the left position of the specified object, in points."/>
			<property name="name" code="pnam" type="text" access="r" description="Returns the name of the object."/>
			<property name="position" code="posn" type="XlLegendPosition" description="Returns or sets the position of the legend on the chart."/>
			<property name="shadow" code="shad" type="boolean" description="Returns or sets if the object has a shadow."/>
			<property name="top" code="ptop" type="real" description="Returns or sets the top position of the specified object, in points."/>
			<property name="width" code="pwid" type="real" description="Returns or sets  the width of the object."/>
		</class>
		<class name="line group" code="cg02" inherits="chart group" plural="line groups"/>
		<class name="pie group" code="cg06" inherits="chart group" plural="pie groups"/>
		<class name="plot area" code="X283" description="Represents the plot area of a chart. This is the area where your chart data is plotted." plural="plot areas">
			<property name="border" code="X251" type="border" access="r" description="Returns a border object that represents the border of the object."/>
			<property name="chart fill format object" code="XCFf" type="chart fill format" access="r" description="Returns a chart fill format object for this object."/>
			<property name="chart format" code="X115" type="chart format" access="r" description="Returns a chart format object that contains chart formatting properties for the plot area."/>
			<property name="height" code="hght" type="real" description="Returns or sets the height of the object."/>
			<property name="inside height" code="2330" type="real" access="r" description="Returns the inside height of the plot area, in points."/>
			<property name="inside left" code="2327" type="real" access="r" description="Returns the distance from the chart edge to the inside left edge of the plot area, in points."/>
			<property name="inside top" code="2328" type="real" access="r" description="Returns the distance from the chart edge to the inside top edge of the plot area, in points."/>
			<property name="inside width" code="2329" type="real" access="r" description="Returns the inside width of the plot area, in points."/>
			<property name="interior object" code="XitO" type="interior" access="r" description="Returns an interior object that represents the interior of the specified object."/>
			<property name="left position" code="plft" type="real" description="Returns or sets the left position of the specified object, in points."/>
			<property name="name" code="pnam" type="text" access="r" description="Returns the name of the object."/>
			<property name="position" code="posn" type="XlChartElementPosition" description="Returns or sets the position of the plot area on the chart."/>
			<property name="top" code="ptop" type="real" description="Returns or sets the top position of the specified object, in points."/>
			<property name="width" code="pwid" type="real" description="Returns or sets  the width of the object."/>
		</class>
		<class name="radar group" code="cg07" inherits="chart group" plural="radar groups"/>
		<class name="series lines" code="X273" description="Represents series lines in a chart group. Series lines connect the data values from each series. Only 2-D stacked bar or column chart groups can have series lines.">
			<property name="border" code="X251" type="border" access="r" description="Returns a border object that represents the border of the object."/>
			<property name="chart format" code="X115" type="chart format" access="r" description="Returns a chart format object that contains chart formatting properties for the series lines."/>
			<property name="name" code="pnam" type="text" access="r" description="Returns the name of this object."/>
		</class>
		<class name="series point" code="X262" description="Represents a single point in a series in a chart." plural="series points">
			<property name="apply pict to end" code="2296" type="boolean" description="Returns or sets if a picture is applied to the end of the point or all points in the series."/>
			<property name="apply pict to front" code="2295" type="boolean" description="Returns or sets if a picture is applied to the front of the point or all points in the series."/>
			<property name="apply pict to sides" code="2294" type="boolean" description="Returns or sets if a picture is applied to the sides of the point or all points in the series."/>
			<property name="border" code="X251" type="border" access="r" description="Returns a border object that represents the border of the object."/>
			<property name="chart fill format object" code="XCFf" type="chart fill format" access="r" description="Returns a chart fill format object for this object."/>
			<property name="chart format" code="X115" type="chart format" access="r" description="Returns a chart format object that contains chart formatting properties for the point."/>
			<property name="data label object" code="XdlO" type="data label" access="r" description="Returns a data label object that represents the data label associated with the point or trendline."/>
			<property name="explosion" code="2284" type="integer" description="Returns or sets the explosion value for a pie-chart or doughnut-chart slice. Returns zero if there's no explosion, the tip of the slice is in the center of the pie."/>
			<property name="has data label" code="2285" type="boolean" description="Returns or sets if the point has a data label."/>
			<property name="has threeD effect" code="2310" type="boolean" description="Returns or sets if a point has a three-dimensional appearance. Applies only to bubble charts."/>
			<property name="height" code="hght" type="real" access="r" description="Returns the height of the object."/>
			<property name="interior object" code="XitO" type="interior" access="r" description="Returns an interior object that represents the interior of the specified object."/>
			<property name="invert if negative" code="2218" type="boolean" description="Returns or sets if Microsoft Excel inverts the pattern in the item when it corresponds to a negative number."/>
			<property name="left position" code="plft" type="real" access="r" description="Returns the left position of the specified object, in points."/>
			<property name="marker background color" code="2286" description="Returns or sets the marker background color as an RGB value. Applies only to line, scatter, and radar charts.">
				<type type="integer" list="yes"/>
			</property>
			<property name="marker background color index" code="2287" type="XlColorIndex" description="Returns or sets the marker background color as an index into the current color palette, or as one of the following constants: color index automatic or color index none. Applies only to line, scatter, and radar charts."/>
			<property name="marker foreground color" code="2288" description="Returns or sets the foreground color of the marker as an RGB value. Applies only to line, scatter, and radar charts.">
				<type type="integer" list="yes"/>
			</property>
			<property name="marker foreground color index" code="2289" type="XlColorIndex" description="Returns or sets the marker foreground color as an index into the current color palette, or as one of the following constants: color index automatic or color index none. Applies only to line, scatter, and radar charts."/>
			<property name="marker size" code="2290" type="integer" description="Returns or sets the data-marker size, in points."/>
			<property name="marker style" code="2291" type="XlMarkerStyle" description="Returns or sets the marker style for a point or series in a line chart, scatter chart, or radar chart."/>
			<property name="name" code="pnam" type="text" access="r" description="Returns the name of the object."/>
			<property name="picture type" code="2292" type="XlChartPictureType" description="Returns or sets the way pictures are displayed on a column or bar picture chart or on the walls and faces of a 3-D chart."/>
			<property name="picture unit" code="2293" type="real" description="Returns or sets the unit for each picture on the chart if the picture type property is set to chart picture type stack scale, if not, this property is ignored."/>
			<property name="secondary plot" code="2297" type="boolean" description="Returns or sets if the point is in the secondary section of either a pie of pie chart or a bar of pie chart. Applies only to points on pie of pie charts or bar of pie charts."/>
			<property name="shadow" code="shad" type="boolean" description="Returns or sets if the object has a shadow."/>
			<property name="top" code="ptop" type="real" access="r" description="Returns the top position of the specified object, in points."/>
			<property name="width" code="pwid" type="real" access="r" description="Returns the width of the object."/>
		</class>
		<class name="series" code="X263" description="Represents a series in a chart." plural="series collection">
			<element type="data label"/>
			<element type="series point"/>
			<element type="trendline"/>
			<property name="apply picture to end" code="2296" type="boolean" description="Returns or sets if a picture is applied to the end of the point or all points in the series."/>
			<property name="apply picture to front" code="2295" type="boolean" description="Returns or sets if a picture is applied to the front of the point or all points in the series."/>
			<property name="apply picture to sides" code="2294" type="boolean" description="Returns or sets if a picture is applied to the sides of the point or all points in the series."/>
			<property name="axis group" code="AgOb" type="XlAxisGroup" description="Returns or sets the axis group for the specified series."/>
			<property name="bar shape" code="1713" type="XlBarShape" description="Returns or sets the shape used with the 3-D bar or column chart."/>
			<property name="border" code="X251" type="border" access="r" description="Returns a border object that represents the border of the object."/>
			<property name="bubble sizes" code="2309" type="text" description="Returns or sets a string in A1-style notation that refers to the worksheet cells containing the size data for the bubble chart. Applies only to bubble charts. "/>
			<property name="chart fill format object" code="XCFf" type="chart fill format" access="r" description="Returns a chart fill format object for this object."/>
			<property name="chart format" code="X115" type="chart format" access="r" description="Returns a chart format object that contains chart formatting properties for the series."/>
			<property name="chart type" code="1708" type="XlChartType" description="Returns or sets the chart type."/>
			<property name="error bars" code="X286" type="error bars" access="r" description="Returns an error bars object that represents the error bars for the series."/>
			<property name="explosion" code="2284" type="integer" description="Returns or sets the explosion value for a pie-chart or doughnut-chart slice. Returns zero if there's no explosion, the tip of the slice is in the center of the pie."/>
			<property name="formula" code="1562" type="text" description="Returns or sets the object's formula, in A1-style notation and in the language of the macro."/>
			<property name="formula local" code="1566" type="text" description="Returns or sets the formula for the object, using A1-style references in the language of the user."/>
			<property name="formula r1c1" code="1567" type="text" description="Returns or sets the formula for the object, using R1C1-style notation in the language of the macro."/>
			<property name="formula r1c1 local" code="1568" type="text" description="Returns or sets the formula for the object, using R1C1-style notation in the language of the user."/>
			<property name="has data labels" code="2301" type="boolean" description="Returns or sets if the series has data labels."/>
			<property name="has error bars" code="2302" type="boolean" description="Returns or set if the series has error bars. This property isn't available for 3-D charts."/>
			<property name="has leader lines" code="2311" type="boolean" description="Returns or sets if the series has leader lines."/>
			<property name="has threeD effect" code="2310" type="boolean" description="Returns or sets if the series has a three-dimensional appearance. Applies only to bubble charts."/>
			<property name="interior object" code="XitO" type="interior" access="r" description="Returns an interior object that represents the interior of the specified object."/>
			<property name="invert if negative" code="2218" type="boolean" description="Returns or sets if Microsoft Excel inverts the pattern in the item when it corresponds to a negative number."/>
			<property name="leader lines" code="X277" type="leader lines" access="r" description="Returns a leader lines object that represents the leader lines for the series."/>
			<property name="marker background color" code="2286" description="Returns or sets the marker background color as an RGB value. Applies only to line, scatter, and radar charts.">
				<type type="integer" list="yes"/>
			</property>
			<property name="marker background color index" code="2287" type="XlColorIndex" description="Returns or sets the marker background color as an index into the current color palette, or as one of the following constants: color index automatic or color index none. Applies only to line, scatter, and radar charts."/>
			<property name="marker foreground color" code="2288" description="Returns or sets the foreground color of the marker as an RGB value. Applies only to line, scatter, and radar charts.">
				<type type="integer" list="yes"/>
			</property>
			<property name="marker foreground color index" code="2289" type="XlColorIndex" description="Returns or sets the marker foreground color as an index into the current color palette, or as one of the following constants: color index automatic or color index none. Applies only to line, scatter, and radar charts."/>
			<property name="marker size" code="2290" type="integer" description="Returns or sets the data-marker size, in points."/>
			<property name="marker style" code="2291" type="XlMarkerStyle" description="Returns or sets the marker style for a point or series in a line chart, scatter chart, or radar chart."/>
			<property name="name" code="pnam" type="text" description="Returns or sets the name of the object."/>
			<property name="picture type" code="2292" type="XlChartPictureType" description="Returns or sets the way pictures are displayed on a column or bar picture chart or on the walls and faces of a 3-D chart."/>
			<property name="picture unit" code="2293" type="real" description="Returns or sets the unit for each picture on the chart if the picture type property is set to chart picture type stack scale, if not, this property is ignored."/>
			<property name="plot color index" code="pcli" type="integer" access="r" description="Returns the plot color index of the series."/>
			<property name="plot order" code="2303" type="integer" description="Returns or sets the plot order for the selected series within the chart group."/>
			<property name="series values" code="XsrV" type="XlCategoryNames" description="Returns or sets a list of all the values in the series. This can be a range on a worksheet or a list of constant values."/>
			<property name="shadow" code="shad" type="boolean" description="Returns or sets if the object has a shadow."/>
			<property name="smooth" code="2304" type="boolean" description="Returns or sets if curve smoothing is turned on for the line chart or scatter chart. Applies only to line and scatter charts."/>
			<property name="xvalues" code="2308" type="XlCategoryNames" description="Returns or sets a list of x values for a chart series. The xvalues property can be set to a range on a worksheet or to a list of values."/>
		</class>
		<class name="tick labels" code="X282" description="Represents the tick-mark labels associated with tick marks on a chart axis.">
			<property name="auto scale font" code="1992" type="boolean" description="Returns or sets if the text in the object changes font size when the object size changes."/>
			<property name="chart format" code="X115" type="chart format" access="r" description="Returns a chart format object that contains chart formatting properties for the tick labels."/>
			<property name="depth" code="1068" type="integer" access="r" description="Returns the number of levels of category tick labels."/>
			<property name="font object" code="XftO" type="font" access="r" description="Returns a font object that represents the font of the specified object."/>
			<property name="multi level" code="2312" type="boolean" description="Returns or sets whether an axis is multilevel or not."/>
			<property name="name" code="pnam" type="text" access="r" description="Returns the name of the object."/>
			<property name="number format" code="1593" type="text" description="Returns or sets the format code for the object."/>
			<property name="number format linked" code="2314" type="boolean" description="Returns or sets if the number format is linked to the cells, so that the number format changes in the labels when it changes in the cells."/>
			<property name="number format local" code="1594" type="text" description="Returns or sets the format code for the object as a string in the language of the user."/>
			<property name="offset" code="2326" type="integer" description="Returns or sets the distance between the levels of labels, and the distance between the first level and the axis line. The value can be an integer percentage from 0 through 1000, relative to the axis label's font size. "/>
			<property name="orientation" code="1596" type="XlTickLabelOrientation" description="The text orientation.  Can be a number value from -90 to 90 degrees."/>
			<property name="reading order" code="1639" type="XLDefaultSheetDir" description="Returns or sets the reading order for the specified object."/>
			<property name="tick alignment" code="XtAl" type="XlTickHAlign" description="Returns or sets the alignment for the specified tick label."/>
		</class>
		<class name="trendline" code="X271" description="Represents a trendline in a chart. A trendline shows the trend, or direction, of data in a series." plural="trendlines">
			<property name="backward" code="2318" type="real" description="Returns or sets the number of periods, or units on a scatter chart, that the trendline extends backward."/>
			<property name="border" code="X251" type="border" access="r" description="Returns a border object that represents the border of the object."/>
			<property name="chart format" code="X115" type="chart format" access="r" description="Returns a chart format object that contains chart formatting properties for the trendline."/>
			<property name="data label object" code="XdlO" type="data label" access="r" description="Returns a data label object that represents the data label associated with the point or trendline."/>
			<property name="display R squared" code="2320" type="boolean" description="Returns or sets if the R-squared value of the trendline is displayed on the chart, in the same data label as the equation. Setting this property to true automatically turns on data labels."/>
			<property name="display equation" code="2319" type="boolean" description="Returns or sets if the equation for the trendline is displayed on the chart, in the same data label as the R-squared value. Setting this property to true automatically turns on data labels."/>
			<property name="entry_index" code="MSix" type="integer" access="r" description="Returns the index number of the object within the elements of the parent object."/>
			<property name="forward" code="2321" type="real" description="Returns or sets the number of periods, or units on a scatter chart, that the trendline extends forward."/>
			<property name="intercept" code="1481" type="real" description="Returns or sets the point where the trendline crosses the value axis."/>
			<property name="intercept is auto" code="2322" type="boolean" description="Returns or sets if the point where the trendline crosses the value axis is automatically determined by the regression."/>
			<property name="name" code="pnam" type="text" description="Returns or sets the name of this object."/>
			<property name="name is auto" code="2323" type="boolean" description="Returns or sets if Microsoft Excel automatically determines the name of the trendline."/>
			<property name="order" code="2071" type="integer" description="Returns or sets the trendline order, an integer greater than 1,  when the trendline type is polynomial."/>
			<property name="period" code="2324" type="integer" description="Returns or sets the period for the moving-average trendline."/>
			<property name="trendline type" code="2325" type="XlTrendlineType" description="Returns or sets the type of this trend line"/>
		</class>
		<class name="up bars" code="X278" description="Represents the up bars in a chart group. Up bars connect points on series one with higher values on the last series in the chart group, the lines go up from series one. Only 2-D line groups that contain at least two series can have up bars.">
			<property name="border" code="X251" type="border" access="r" description="Returns a border object that represents the border of the object."/>
			<property name="chart fill format object" code="XCFf" type="chart fill format" access="r" description="Returns a chart fill format object for this object."/>
			<property name="chart format" code="X115" type="chart format" access="r" description="Returns a chart format object that contains chart formatting properties for the up bars."/>
			<property name="interior object" code="XitO" type="interior" access="r" description="Returns an interior object that represents the interior of the specified object."/>
			<property name="name" code="pnam" type="text" access="r" description="Returns the name of this object."/>
		</class>
		<class name="walls" code="X281" description="Represents the walls of a 3-D chart." plural="walls collection">
			<property name="border" code="X251" type="border" access="r" description="Returns a border object that represents the border of the object."/>
			<property name="chart fill format object" code="XCFf" type="chart fill format" access="r" description="Returns a chart fill format object for this object."/>
			<property name="chart format" code="X115" type="chart format" access="r" description="Returns a chart format object that contains chart formatting properties for the walls."/>
			<property name="interior object" code="XitO" type="interior" access="r" description="Returns an interior object that represents the interior of the specified object."/>
			<property name="name" code="pnam" type="text" access="r" description="Returns or sets the name of the object."/>
			<property name="picture type" code="2292" type="XlChartPictureType" description="Returns or sets the way pictures are displayed on a column or bar picture chart or on the walls and faces of a 3-D chart."/>
			<property name="picture unit" code="2293" type="integer" description="Returns or sets the unit for each picture on the chart if the picture type property is set to chart picture type stack scale, if not, this property is ignored."/>
			<property name="thickness" code="Thck" type="integer" description="Returns or sets  the thickness of the floor."/>
		</class>
		<class name="xy group" code="cg09" inherits="chart group" plural="xy groups"/>
		<enumeration name="chart patterned" code="4040">
			<enumerator name="chart fill format" code="X253"/>
			<enumerator name="chart title" code="X256"/>
			<enumerator name="axis title" code="X257"/>
			<enumerator name="series point" code="X262"/>
			<enumerator name="series" code="X263"/>
			<enumerator name="data label" code="X265"/>
			<enumerator name="legend key" code="X269"/>
			<enumerator name="down bars" code="X279"/>
			<enumerator name="floor" code="X280"/>
			<enumerator name="walls" code="X281"/>
			<enumerator name="plot area" code="X283"/>
			<enumerator name="chart area" code="X284"/>
			<enumerator name="legend" code="X285"/>
			<enumerator name="display unit label" code="X299"/>
		</enumeration>
		<enumeration name="clear" code="4052">
			<enumerator name="chart area" code="X284"/>
			<enumerator name="legend" code="X285"/>
		</enumeration>
		<enumeration name="clear formats" code="4050">
			<enumerator name="series point" code="X262"/>
			<enumerator name="series" code="X263"/>
			<enumerator name="legend key" code="X269"/>
			<enumerator name="trendline" code="X271"/>
			<enumerator name="floor" code="X280"/>
			<enumerator name="walls" code="X281"/>
			<enumerator name="plot area" code="X283"/>
			<enumerator name="chart area" code="X284"/>
			<enumerator name="error bars" code="X286"/>
		</enumeration>
		<enumeration name="apply data labels" code="4048">
			<enumerator name="chart" code="X119"/>
			<enumerator name="series point" code="X262"/>
			<enumerator name="series" code="X263"/>
		</enumeration>
		<enumeration name="paste" code="4051">
			<enumerator name="floor" code="X280"/>
			<enumerator name="walls" code="X281"/>
		</enumeration>
		<enumeration name="chart one color gradient" code="4041">
			<enumerator name="chart fill format" code="X253"/>
			<enumerator name="chart title" code="X256"/>
			<enumerator name="axis title" code="X257"/>
			<enumerator name="series point" code="X262"/>
			<enumerator name="series" code="X263"/>
			<enumerator name="data label" code="X265"/>
			<enumerator name="legend key" code="X269"/>
			<enumerator name="down bars" code="X279"/>
			<enumerator name="floor" code="X280"/>
			<enumerator name="walls" code="X281"/>
			<enumerator name="plot area" code="X283"/>
			<enumerator name="chart area" code="X284"/>
			<enumerator name="legend" code="X285"/>
			<enumerator name="display unit label" code="X299"/>
		</enumeration>
		<enumeration name="chart two color gradient" code="4044">
			<enumerator name="chart fill format" code="X253"/>
			<enumerator name="chart title" code="X256"/>
			<enumerator name="axis title" code="X257"/>
			<enumerator name="series point" code="X262"/>
			<enumerator name="series" code="X263"/>
			<enumerator name="data label" code="X265"/>
			<enumerator name="legend key" code="X269"/>
			<enumerator name="down bars" code="X279"/>
			<enumerator name="floor" code="X280"/>
			<enumerator name="walls" code="X281"/>
			<enumerator name="plot area" code="X283"/>
			<enumerator name="chart area" code="X284"/>
			<enumerator name="legend" code="X285"/>
			<enumerator name="display unit label" code="X299"/>
		</enumeration>
		<enumeration name="chart solid" code="4045">
			<enumerator name="chart fill format" code="X253"/>
			<enumerator name="chart title" code="X256"/>
			<enumerator name="axis title" code="X257"/>
			<enumerator name="series point" code="X262"/>
			<enumerator name="series" code="X263"/>
			<enumerator name="data label" code="X265"/>
			<enumerator name="legend key" code="X269"/>
			<enumerator name="down bars" code="X279"/>
			<enumerator name="floor" code="X280"/>
			<enumerator name="walls" code="X281"/>
			<enumerator name="plot area" code="X283"/>
			<enumerator name="chart area" code="X284"/>
			<enumerator name="legend" code="X285"/>
			<enumerator name="display unit label" code="X299"/>
		</enumeration>
		<enumeration name="copy object" code="4049">
			<enumerator name="chart object" code="X221"/>
			<enumerator name="series point" code="X262"/>
			<enumerator name="series" code="X263"/>
			<enumerator name="chart area" code="X284"/>
		</enumeration>
		<enumeration name="chart user picture" code="4043">
			<enumerator name="chart fill format" code="X253"/>
			<enumerator name="chart title" code="X256"/>
			<enumerator name="axis title" code="X257"/>
			<enumerator name="series point" code="X262"/>
			<enumerator name="series" code="X263"/>
			<enumerator name="data label" code="X265"/>
			<enumerator name="legend key" code="X269"/>
			<enumerator name="down bars" code="X279"/>
			<enumerator name="floor" code="X280"/>
			<enumerator name="walls" code="X281"/>
			<enumerator name="plot area" code="X283"/>
			<enumerator name="chart area" code="X284"/>
			<enumerator name="legend" code="X285"/>
			<enumerator name="display unit label" code="X299"/>
		</enumeration>
		<enumeration name="delete object" code="4039">
			<enumerator name="chart object" code="X221"/>
			<enumerator name="axis" code="X255"/>
		</enumeration>
		<enumeration name="preset chart gradient" code="4047">
			<enumerator name="chart fill format" code="X253"/>
			<enumerator name="chart title" code="X256"/>
			<enumerator name="axis title" code="X257"/>
			<enumerator name="series point" code="X262"/>
			<enumerator name="series" code="X263"/>
			<enumerator name="data label" code="X265"/>
			<enumerator name="legend key" code="X269"/>
			<enumerator name="down bars" code="X279"/>
			<enumerator name="floor" code="X280"/>
			<enumerator name="walls" code="X281"/>
			<enumerator name="plot area" code="X283"/>
			<enumerator name="chart area" code="X284"/>
			<enumerator name="legend" code="X285"/>
			<enumerator name="display unit label" code="X299"/>
		</enumeration>
		<enumeration name="preset chart textured" code="4046">
			<enumerator name="chart fill format" code="X253"/>
			<enumerator name="chart title" code="X256"/>
			<enumerator name="axis title" code="X257"/>
			<enumerator name="series point" code="X262"/>
			<enumerator name="series" code="X263"/>
			<enumerator name="data label" code="X265"/>
			<enumerator name="legend key" code="X269"/>
			<enumerator name="down bars" code="X279"/>
			<enumerator name="floor" code="X280"/>
			<enumerator name="walls" code="X281"/>
			<enumerator name="plot area" code="X283"/>
			<enumerator name="chart area" code="X284"/>
			<enumerator name="legend" code="X285"/>
			<enumerator name="display unit label" code="X299"/>
		</enumeration>
		<enumeration name="chart user textured" code="4042">
			<enumerator name="chart fill format" code="X253"/>
			<enumerator name="chart title" code="X256"/>
			<enumerator name="axis title" code="X257"/>
			<enumerator name="series point" code="X262"/>
			<enumerator name="series" code="X263"/>
			<enumerator name="data label" code="X265"/>
			<enumerator name="legend key" code="X269"/>
			<enumerator name="down bars" code="X279"/>
			<enumerator name="floor" code="X280"/>
			<enumerator name="walls" code="X281"/>
			<enumerator name="plot area" code="X283"/>
			<enumerator name="chart area" code="X284"/>
			<enumerator name="legend" code="X285"/>
			<enumerator name="display unit label" code="X299"/>
		</enumeration>
		<enumeration name="activate object" code="4038">
			<enumerator name="chart" code="X119"/>
			<enumerator name="chart object" code="X221"/>
		</enumeration>
	</suite>
</dictionary>
