JS中,操作EXCEL时,常用的常量定义

本文介绍了一种使用JavaScript将数据导出到Excel的方法。针对某些Excel常量无法直接在JS中使用的难题,作者通过定义并导出这些常量来解决。文中提供了具体的测试代码示例,展示了如何设置单元格样式等。
 在编写将数据导出到EXCEL时,发现有些EXCEL常量无法在JS中使用(或者是我还不能找到其的位置),于是,使用了最笨的方法,将其常量定义导出,在方便在JS中使用。
需要使用到的,但还没整理的,只有自己动手搞一下了。
使用示例:worksheet.Range(cells(1, 1),cells(10, 10)).Borders.LineStyle = Excel.XlBorderWeight.xlHairline;
具体如下测试代码:
  1. <html>
  2. <head>
  3. <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
  4. <title>新建网页 5</title>
  5. <script src="excel_const.js" type="text/javascript"></script>
  6. <SCRIPT FOR=window EVENT=onunload>
  7.      closeApp();
  8. </SCRIPT>
  9. <script language=javascript>
  10.     var excelApp = null;
  11.     var EXCEL_APP = "Excel.Application";
  12.     function createExcelApp(visible,displayAlerts)
  13.     {
  14.         try
  15.         {
  16.             if(!excelApp)
  17.             {
  18.                 excelAppnew ActiveXObject(EXCEL_APP);
  19.             }
  20.             if(excelApp)
  21.             {
  22.                 excelApp.Visible = visible;
  23.                 excelApp.DisplayAlerts = displayAlerts;
  24.             }
  25.         }
  26.         catch(e)
  27.         {
  28.             alert(e.message);
  29.         }
  30.         
  31.         return excelApp;
  32.     }
  33.     
  34.     function closeExcelApp(exApp)
  35.     {
  36.         if(exApp)
  37.         {
  38.             exApp.Quit();
  39.         }
  40.     }
  41.     
  42.     
  43.     function addWorkbook(exApp)
  44.     {
  45.         if(!exApp)
  46.         {
  47.             return;
  48.         }
  49.         
  50.         var workbook = exApp.Workbooks.Add();
  51.         if(workbook)
  52.         {
  53.             workbook.Activate();
  54.         }
  55.         return workbook;
  56.     }
  57.     
  58.     function getWorksheet(workbook,index)
  59.     {
  60.         var worksheet = null;
  61.         if(index)
  62.         {
  63.             worksheet = workbook.Worksheets(index);
  64.         }
  65.         else
  66.         {
  67.             worksheet = workbook.ActiveSheet;
  68.         }
  69.         
  70.         return worksheet;
  71.     }   
  72.     
  73.     function fillWorksheet(worksheet)
  74.     {
  75.         var cells = worksheet.Cells;
  76.         for(var i=1; i<10; ++i)
  77.         {
  78.             for(var j=1; j<10; ++j)
  79.             {
  80.                 cells(i,j).Value = i*j;
  81.             }
  82.         }
  83.         
  84.         
  85.         worksheet.Range(cells(1, 1),cells(10, 10)).Borders.LineStyle = Excel.XlBorderWeight.xlHairline;
  86.         
  87.         return cells;
  88.     }
  89.     
  90.     function export2Excel()
  91.     {
  92.         var exApp = createExcelApp(false,false);
  93.         var workbook = addWorkbook(excelApp);
  94.         var worksheet = getWorksheet(workbook);
  95.         var cells = fillWorksheet(worksheet);
  96.     }   
  97.     
  98.     function printPreview()
  99.     {
  100.         var visible = excelApp.Visible;
  101.         if(excelApp.ActiveSheet)
  102.         {
  103.         
  104.             if(false == visible)
  105.             {
  106.                 excelApp.Visible = true;
  107.             }
  108.             excelApp.ActiveSheet.PrintPreview();
  109.             
  110.             excelApp.Visible = visible ;
  111.         }
  112.     }
  113.     
  114.     function printOut()
  115.     {
  116.         if(excelApp.ActiveSheet)
  117.         {
  118.             
  119.             excelApp.ActiveSheet.PrintOut();
  120.         }
  121.     }
  122.     
  123.     function closeApp()
  124.     {
  125.         closeExcelApp(excelApp);
  126.     }
  127. </script>
  128. </head>
  129. <body>
  130. <form method="POST" action="_derived/nortbots.htm" onSubmit="location.href='_derived/nortbots.htm';return false;" webbot-onSubmit webbot-action="--WEBBOT-SELF--">
  131.     <!--webbot bot="SaveResults" U-File="_private/form_results.csv" S-Format="TEXT/CSV" S-Label-Fields="TRUE" startspan --><input TYPE="hidden" NAME="VTI-GROUP" VALUE="0"><!--webbot bot="SaveResults" i-checksum="43374" endspan -->
  132.     <p><input type="button" value="导出…" name="export" onclick="export2Excel();"><input type="button" value="预览…" name="preview" onclick="printPreview()"><input type="button" value="打印…" name="print" onclick="printOut();"><input type="button" value="关闭" name="close" onclick="closeApp();"></p>
  133. </form>
  134. </body>
  135. </html>

  1. /**
  2. *
  3. *Microsoft Excel 常量
  4. *参阅特性本主题列出了 Microsoft Excel 对象模型中的所有常量。
  5. */
  6. Excel = function(){
  7.     return {  
  8.         XlApplicationInternational:{
  9.                 xl24HourClock: 33 ,
  10.                 xl4DigitYears: 43 ,
  11.                 xlAlternateArraySeparator: 16 ,
  12.                 xlColumnSeparator: 14, 
  13.                 xlCountryCode:  1, 
  14.                 xlCountrySetting:  2 ,
  15.                 xlCurrencyBefore:  37 ,
  16.                 xlCurrencyCode:  25 ,
  17.                 xlCurrencyDigits:  27, 
  18.                 xlCurrencyLeadingZeros:  40 ,
  19.                 xlCurrencyMinusSign:  38 ,
  20.                 xlCurrencyNegative:  28 ,
  21.                 xlCurrencySpaceBefore:  36 ,
  22.                 xlCurrencyTrailingZeros:  39 ,
  23.                 xlDateOrder:  32 ,
  24.                 xlDateSeparator:  17 ,
  25.                 xlDayCode:  21 ,
  26.                 XlDayLeadingZero:  42 ,
  27.                 xlDecimalSeparator:  3 ,
  28.                 xlGeneralFormatName:  26 ,
  29.                 xlHourCode:  22 ,
  30.                 xlLeftBrace:  12 ,
  31.                 xlLeftBracket:  10 ,
  32.                 xlListSeparator:  5 ,
  33.                 xlLowerCaseColumnLetter:  9 ,
  34.                 xlLowerCaseRowLetter:  8 ,
  35.                 xlMDY:  44 ,
  36.                 xlMetric:  35 ,
  37.                 xlMinuteCode:  23 ,
  38.                 xlMonthCode:  20 ,
  39.                 xlMonthLeadingZero:  41 ,
  40.                 xlMonthNameChars:  30 ,
  41.                 xlNoncurrencyDigits:  29 ,
  42.                 xlNonEnglishFunctions:  34 ,
  43.                 xlRightBrace:  13 ,
  44.                 xlRightBracket:  11 ,
  45.                 xlRowSeparator:  15 ,
  46.                 xlSecondCode:  24 ,
  47.                 xlThousandsSeparator:  4 ,
  48.                 xlTimeLeadingZero:  45 ,
  49.                 xlTimeSeparator:  18 ,
  50.                 xlUpperCaseColumnLetter:  7 ,
  51.                 xlUpperCaseRowLetter:  6 ,
  52.                 xlWeekdayNameChars:  31 ,
  53.                 xlYearCode:  19 },
  54.             xlApplyNamesOrder:{
  55.                 xlColumnThenRow:  2 ,
  56.                 xlRowThenColumn:  1 },
  57.                 
  58.             XlArabicModes:{
  59.                 xlArabicBothStrict:  3 ,
  60.                 xlArabicNone:  0 ,
  61.                 xlArabicStrictAlefHamza:  1 ,
  62.                 xlArabicStrictFinalYaa:  2 },
  63.             XlArrangeStyle:{
  64.                 xlArrangeStyleCascade:  7 ,
  65.                 xlArrangeStyleHorizontal:  -4128 ,
  66.                 xlArrangeStyleTiled:  1 ,
  67.                 xlArrangeStyleVertical:  -4166 },
  68.             XlArrowHeadLength:{
  69.                 xlArrowHeadLengthLong:  3 ,
  70.                 xlArrowHeadLengthMedium:  -4138 ,
  71.                 xlArrowHeadLengthShort:  1 },
  72.             XlArrowHeadStyle:{
  73.                 xlArrowHeadStyleClosed:  3 ,
  74.                 xlArrowHeadStyleDoubleClosed:  5 ,
  75.                 xlArrowHeadStyleDoubleOpen:  4 ,
  76.                 xlArrowHeadStyleNone:  -4142 ,
  77.                 xlArrowHeadStyleOpen:  2 },
  78.             XlArrowHeadWidth:{
  79.                 xlArrowHeadWidthMedium:  -4138 ,
  80.                 xlArrowHeadWidthNarrow:  1 ,
  81.                 xlArrowHeadWidthWide:  3 },
  82. XlAutoFillType:{
  83. xlFillCopy:  1 ,
  84. xlFillDays:  5 ,
  85. xlFillDefault:  0 ,
  86. xlFillFormats:  3 ,
  87. xlFillMonths:  7 ,
  88. xlFillSeries:  2 ,
  89. xlFillValues:  4 ,
  90. xlFillWeekdays:  6 ,
  91. xlFillYears:  8 ,
  92. xlGrowthTrend:  10 ,
  93. xlLinearTrend:  9 },
  94. XlAutoFilterOperator:{
  95. xlAnd:  1 ,
  96. xlBottom10Items:  4 ,
  97. xlBottom10Percent:  6 ,
  98. xlOr:  2 ,
  99. xlTop10Items:  3 ,
  100. xlTop10Percent:  5 },
  101. XlAxisCrosses:{
  102. xlAxisCrossesAutomatic:  -4105 ,
  103. xlAxisCrossesCustom:  -4114 ,
  104. xlAxisCrossesMaximum:  2 ,
  105. xlAxisCrossesMinimum:  4 },
  106. XlAxisGroup:{
  107. xlPrimary:  1 ,
  108. xlSecondary:  2 },
  109. XlAxisType:{
  110. xlCategory:  1 ,
  111. xlSeriesAxis:  3 ,
  112. xlValue:  2 },
  113. XlBackground:{
  114. xlBackgroundAutomatic:  -4105 ,
  115. xlBackgroundOpaque:  3 ,
  116. xlBackgroundTransparent:  2 },
  117. XlBarShape:{
  118. xlBox:  0 ,
  119. xlConeToMax:  5 ,
  120. xlConeToPoint:  4 ,
  121. xlCylinder:  3 ,
  122. xlPyramidToMax:  2 ,
  123. xlPyramidToPoint:  1 },
  124. XlBordersIndex:{
  125. xlDiagonalDown:  5 ,
  126. xlDiagonalUp:  6 ,
  127. xlEdgeBottom:  9 ,
  128. xlEdgeLeft:  7 ,
  129. xlEdgeRight:  10 ,
  130. xlEdgeTop:  8 ,
  131. xlInsideHorizontal:  12 ,
  132. xlInsideVertical:  11 },
  133. XlBorderWeight:{
  134.     xlHairline:  1 ,
  135.     xlMedium:  -4138 ,
  136.     xlThick:  4 ,
  137.     xlThin:  2},
  138. /*
  139. XlBuiltInDialog:{
  140. _xlDialogChartSourceData:  541 ,
  141. _xlDialogPhonetic:  538 ,
  142. xlDialogActivate:  103 ,
  143. xlDialogActiveCellFont:  476 ,
  144. xlDialogAddChartAutoformat:  390 ,
  145. xlDialogAddinManager:  321 ,
  146. xlDialogAlignment:  43 ,
  147. xlDialogApplyNames:  133 ,
  148. xlDialogApplyStyle:  212 ,
  149. xlDialogAppMove:  170 ,
  150. xlDialogAppSize:  171 ,
  151. xlDialogArrangeAll:  12 ,
  152. xlDialogAssignToObject:  213 ,
  153. xlDialogAssignToTool:  293 ,
  154. xlDialogAttachText:  80 ,
  155. xlDialogAttachToolbars:  323 ,
  156. xlDialogAutoCorrect:  485 ,
  157. xlDialogAxes:  78 ,
  158. xlDialogBorder:  45 ,
  159. xlDialogCalculation:  32 ,
  160. xlDialogCellProtection:  46 ,
  161. xlDialogChangeLink:  166 ,
  162. xlDialogChartAddData:  392 ,
  163. xlDialogChartLocation:  527 ,
  164. xlDialogChartOptionsDataLabelMultiple:  724 ,
  165. xlDialogChartOptionsDataLabels:  505 ,
  166. xlDialogChartOptionsDataTable:  506 ,
  167. xlDialogChartSourceData:  540 ,
  168. xlDialogChartTrend:  350 ,
  169. xlDialogChartType:  526 ,
  170. xlDialogChartWizard:  288 ,
  171. xlDialogCheckboxProperties:  435 ,
  172. xlDialogClear:  52 ,
  173. xlDialogColorPalette:  161 ,
  174. xlDialogColumnWidth:  47 ,
  175. xlDialogCombination:  73 ,
  176. xlDialogConditionalFormatting:  583 ,
  177. xlDialogConsolidate:  191 ,
  178. xlDialogCopyChart:  147 ,
  179. xlDialogCopyPicture:  108 ,
  180. xlDialogCreateList:  796 ,
  181. xlDialogCreateNames:  62 ,
  182. xlDialogCreatePublisher:  217 ,
  183. xlDialogCustomizeToolbar:  276 ,
  184. xlDialogCustomViews:  493 ,
  185. xlDialogDataDelete:  36 ,
  186. xlDialogDataLabel:  379 ,
  187. xlDialogDataLabelMultiple:  723 ,
  188. xlDialogDataSeries:  40 ,
  189. xlDialogDataValidation:  525 ,
  190. xlDialogDefineName:  61 ,
  191. xlDialogDefineStyle:  229 ,
  192. xlDialogDeleteFormat:  111 ,
  193. xlDialogDeleteName:  110 ,
  194. xlDialogDemote:  203 ,
  195. xlDialogDisplay:  27 ,
  196. xlDialogEditboxProperties:  438 ,
  197. xlDialogEditColor:  223 ,
  198. xlDialogEditDelete:  54 ,
  199. xlDialogEditionOptions:  251 ,
  200. xlDialogEditSeries:  228 ,
  201. xlDialogErrorbarX:  463 ,
  202. xlDialogErrorbarY:  464 ,
  203. xlDialogErrorChecking:  732 ,
  204. xlDialogEvaluateFormula:  709 ,
  205. xlDialogExternalDataProperties:  530 ,
  206. xlDialogExtract:  35 ,
  207. xlDialogFileDelete:  6 ,
  208. xlDialogFileSharing:  481 ,
  209. xlDialogFillGroup:  200 ,
  210. xlDialogFillWorkgroup:  301 ,
  211. xlDialogFilter:  447 ,
  212. xlDialogFilterAdvanced:  370 ,
  213. xlDialogFindFile:  475 ,
  214. xlDialogFont:  26 ,
  215. xlDialogFontProperties:  381 ,
  216. xlDialogFormatAuto:  269 ,
  217. xlDialogFormatChart:  465 ,
  218. xlDialogFormatCharttype  423 
  219. xlDialogFormatFont  150 
  220. xlDialogFormatLegend  88 
  221. xlDialogFormatMain  225 
  222. xlDialogFormatMove  128 
  223. xlDialogFormatNumber  42 
  224. xlDialogFormatOverlay  226 
  225. xlDialogFormatSize  129 
  226. xlDialogFormatText  89 
  227. xlDialogFormulaFind  64 
  228. xlDialogFormulaGoto  63 
  229. xlDialogFormulaReplace  130 
  230. xlDialogFunctionWizard  450 
  231. xlDialogGallery3dArea  193 
  232. xlDialogGallery3dBar  272 
  233. xlDialogGallery3dColumn  194 
  234. xlDialogGallery3dLine  195 
  235. xlDialogGallery3dPie  196 
  236. xlDialogGallery3dSurface  273 
  237. xlDialogGalleryArea  67 
  238. xlDialogGalleryBar  68 
  239. xlDialogGalleryColumn  69 
  240. xlDialogGalleryCustom  388 
  241. xlDialogGalleryDoughnut  344 
  242. xlDialogGalleryLine  70 
  243. xlDialogGalleryPie  71 
  244. xlDialogGalleryRadar  249 
  245. xlDialogGalleryScatter  72 
  246. xlDialogGoalSeek  198 
  247. xlDialogGridlines  76 
  248. xlDialogImportTextFile  666 
  249. xlDialogInsert  55 
  250. xlDialogInsertHyperlink  596 
  251. xlDialogInsertNameLabel  496 
  252. xlDialogInsertObject  259 
  253. xlDialogInsertPicture  342 
  254. xlDialogInsertTitle  380 
  255. xlDialogLabelProperties  436 
  256. xlDialogListboxProperties  437 
  257. xlDialogMacroOptions  382 
  258. xlDialogMailEditMailer  470 
  259. xlDialogMailLogon  339 
  260. xlDialogMailNextLetter  378 
  261. xlDialogMainChart  85 
  262. xlDialogMainChartType  185 
  263. xlDialogMenuEditor  322 
  264. xlDialogMove  262 
  265. xlDialogMyPermission  834 
  266. xlDialogNew  119 
  267. xlDialogNewWebQuery  667 
  268. xlDialogNote  154 
  269. xlDialogObjectProperties  207 
  270. xlDialogObjectProtection  214 
  271. xlDialogOpen  1 
  272. xlDialogOpenLinks  2 
  273. xlDialogOpenMail  188 
  274. xlDialogOpenText  441 
  275. xlDialogOptionsCalculation  318 
  276. xlDialogOptionsChart  325 
  277. xlDialogOptionsEdit  319 
  278. xlDialogOptionsGeneral  356 
  279. xlDialogOptionsListsAdd  458 
  280. xlDialogOptionsME  647 
  281. xlDialogOptionsTransition  355 
  282. xlDialogOptionsView  320 
  283. xlDialogOutline  142 
  284. xlDialogOverlay  86 
  285. xlDialogOverlayChartType  186 
  286. xlDialogPageSetup  7 
  287. xlDialogParse  91 
  288. xlDialogPasteNames  58 
  289. xlDialogPasteSpecial  53 
  290. xlDialogPatterns  84 
  291. xlDialogPermission  832 
  292. xlDialogPhonetic  656 
  293. xlDialogPivotCalculatedField  570 
  294. xlDialogPivotCalculatedItem  572 
  295. xlDialogPivotClientServerSet  689 
  296. xlDialogPivotFieldGroup  433 
  297. xlDialogPivotFieldProperties  313 
  298. xlDialogPivotFieldUngroup  434 
  299. xlDialogPivotShowPages  421 
  300. xlDialogPivotSolveOrder  568 
  301. xlDialogPivotTableOptions  567 
  302. xlDialogPivotTableWizard  312 
  303. xlDialogPlacement  300 
  304. xlDialogPrint  8 
  305. xlDialogPrinterSetup  9 
  306. xlDialogPrintPreview  222 
  307. xlDialogPromote  202 
  308. xlDialogProperties  474 
  309. xlDialogPropertyFields  754 
  310. xlDialogProtectDocument  28 
  311. xlDialogProtectSharing  620 
  312. xlDialogPublishAsWebPage  653 
  313. xlDialogPushbuttonProperties  445 
  314. xlDialogReplaceFont  134 
  315. xlDialogRoutingSlip  336 
  316. xlDialogRowHeight  127 
  317. xlDialogRun  17 
  318. xlDialogSaveAs  5 
  319. xlDialogSaveCopyAs  456 
  320. xlDialogSaveNewObject  208 
  321. xlDialogSaveWorkbook  145 
  322. xlDialogSaveWorkspace  285 
  323. xlDialogScale  87 
  324. xlDialogScenarioAdd  307 
  325. xlDialogScenarioCells  305 
  326. xlDialogScenarioEdit  308 
  327. xlDialogScenarioMerge  473 
  328. xlDialogScenarioSummary  311 
  329. xlDialogScrollbarProperties  420 
  330. xlDialogSearch  731 
  331. xlDialogSelectSpecial  132 
  332. xlDialogSendMail  189 
  333. xlDialogSeriesAxes  460 
  334. xlDialogSeriesOptions  557 
  335. xlDialogSeriesOrder  466 
  336. xlDialogSeriesShape  504 
  337. xlDialogSeriesX  461 
  338. xlDialogSeriesY  462 
  339. xlDialogSetBackgroundPicture  509 
  340. xlDialogSetPrintTitles  23 
  341. xlDialogSetUpdateStatus  159 
  342. xlDialogShowDetail  204 
  343. xlDialogShowToolbar  220 
  344. xlDialogSize  261 
  345. xlDialogSort  39 
  346. xlDialogSortSpecial  192 
  347. xlDialogSplit  137 
  348. xlDialogStandardFont  190 
  349. xlDialogStandardWidth  472 
  350. xlDialogStyle  44 
  351. xlDialogSubscribeTo  218 
  352. xlDialogSubtotalCreate  398 
  353. xlDialogSummaryInfo  474 
  354. xlDialogTable  41 
  355. xlDialogTabOrder  394 
  356. xlDialogTextToColumns  422 
  357. xlDialogUnhide  94 
  358. xlDialogUpdateLink  201 
  359. xlDialogVbaInsertFile  328 
  360. xlDialogVbaMakeAddin  478 
  361. xlDialogVbaProcedureDefinition  330 
  362. xlDialogView3d  197 
  363. xlDialogWebOptionsBrowsers  773 
  364. xlDialogWebOptionsEncoding  686 
  365. xlDialogWebOptionsFiles  684 
  366. xlDialogWebOptionsFonts  687 
  367. xlDialogWebOptionsGeneral  683 
  368. xlDialogWebOptionsPictures  685 
  369. xlDialogWindowMove  14 
  370. xlDialogWindowSize  13 
  371. xlDialogWorkbookAdd  281 
  372. xlDialogWorkbookCopy  283 
  373. xlDialogWorkbookInsert  354 
  374. xlDialogWorkbookMove  282 
  375. xlDialogWorkbookName  386 
  376. xlDialogWorkbookNew  302 
  377. xlDialogWorkbookOptions  284 
  378. xlDialogWorkbookProtect  417 
  379. xlDialogWorkbookTabSplit  415 
  380. xlDialogWorkbookUnhide  384 
  381. xlDialogWorkgroup  199 
  382. xlDialogWorkspace  95 
  383. xlDialogZoom  256 
  384. */
  385. XlCalculatedMemberType:{
  386. xlCalculatedMember:  0 ,
  387. xlCalculatedSet:  1 },
  388. XlCalculation:{
  389. xlCalculationAutomatic:  -4105 ,
  390. xlCalculationManual:  -4135 ,
  391. xlCalculationSemiautomatic:  2 },
  392. XlCalculationInterruptKey:{
  393. xlAnyKey:  2 ,
  394. xlEscKey:  1 ,
  395. xlNoKey:  0 },
  396. XlCalculationState:{
  397. xlCalculating:  1 ,
  398. xlDone:  0 ,
  399. xlPending:  2 },
  400. XlCategoryType:{
  401. xlAutomaticScale:  -4105 ,
  402. xlCategoryScale:  2 ,
  403. xlTimeScale:  3 },
  404. XlCellInsertionMode:{
  405. xlInsertDeleteCells:  1 ,
  406. xlInsertEntireRows:  2 ,
  407. xlOverwriteCells:  0 },
  408. XlCellType:{
  409. xlCellTypeAllFormatConditions:  -4172 ,
  410. xlCellTypeAllValidation:  -4174 ,
  411. xlCellTypeBlanks : 4 ,
  412. xlCellTypeComments:  -4144 ,
  413. xlCellTypeConstants:  2 ,
  414. xlCellTypeFormulas:  -4123 ,
  415. xlCellTypeLastCell:  11 ,
  416. xlCellTypeSameFormatConditions : -4173 ,
  417. xlCellTypeSameValidation:  -4175 ,
  418. xlCellTypeVisible:  12 },
  419. /*
  420. XlChartGallery:{
  421. xlAnyGallery:  23 ,
  422. xlBuiltIn:  21 ,
  423. xlUserDefined:  22 },
  424. XlChartItem
  425. 常量 值 
  426. xlAxis  21 
  427. xlAxisTitle  17 
  428. xlChartArea  2 
  429. xlChartTitle  4 
  430. xlCorners  6 
  431. xlDataLabel  0 
  432. xlDataTable  7 
  433. xlDisplayUnitLabel  30 
  434. xlDownBars  20 
  435. xlDropLines  26 
  436. xlErrorBars  9 
  437. xlFloor  23 
  438. xlHiLoLines  25 
  439. xlLeaderLines  29 
  440. xlLegend  24 
  441. xlLegendEntry  12 
  442. xlLegendKey  13 
  443. xlMajorGridlines  15 
  444. xlMinorGridlines  16 
  445. xlNothing  28 
  446. xlPivotChartDropZone  32 
  447. xlPivotChartFieldButton  31 
  448. xlPlotArea  19 
  449. xlRadarAxisLabels  27 
  450. xlSeries  3 
  451. xlSeriesLines  22 
  452. xlShape  14 
  453. xlTrendline  8 
  454. xlUpBars  18 
  455. xlWalls  5 
  456. xlXErrorBars  10 
  457. xlYErrorBars  11 
  458. XlChartLocation
  459. 常量 值 
  460. xlLocationAsNewSheet  1 
  461. xlLocationAsObject  2 
  462. xlLocationAutomatic  3 
  463. XlChartPicturePlacement
  464. 常量 值 
  465. xlAllFaces  7 
  466. xlEnd  2 
  467. xlEndSides  3 
  468. xlFront  4 
  469. xlFrontEnd  6 
  470. xlFrontSides  5 
  471. xlSides  1 
  472. XlChartPictureType
  473. 常量 值 
  474. xlStack  2 
  475. xlStackScale  3 
  476. xlStretch  1 
  477. XlChartSplitType
  478. 常量 值 
  479. xlSplitByCustomSplit  4 
  480. xlSplitByPercentValue  3 
  481. xlSplitByPosition  1 
  482. xlSplitByValue  2 
  483. XlChartType
  484. 常量 值 
  485. xl3DArea  -4098 
  486. xl3DAreaStacked  78 
  487. xl3DAreaStacked100  79 
  488. xl3DBarClustered  60 
  489. xl3DBarStacked  61 
  490. xl3DBarStacked100  62 
  491. xl3DColumn  -4100 
  492. xl3DColumnClustered  54 
  493. xl3DColumnStacked  55 
  494. xl3DColumnStacked100  56 
  495. xl3DLine  -4101 
  496. xl3Dpie  -4102 
  497. xl3DPieExploded  70 
  498. xlArea  1 
  499. xlAreaStacked  76 
  500. xlAreaStacked100  77 
  501. xlBarClustered  57 
  502. xlBarOfPie  71 
  503. xlBarStacked  58 
  504. xlBarStacked100  59 
  505. xlBubble  15 
  506. xlBubble3DEffect  87 
  507. xlColumnClustered  51 
  508. xlColumnStacked  52 
  509. xlColumnStacked100  53 
  510. xlConeBarClustered  102 
  511. xlConeBarStacked  103 
  512. xlConeBarStacked100  104 
  513. xlConeCol  105 
  514. xlConeColClustered  99 
  515. xlConeColStacked  100 
  516. xlConeColStacked100  101 
  517. xlCylinderBarClustered  95 
  518. xlCylinderBarStacked  96 
  519. xlCylinderBarStacked100  97 
  520. xlCylinderCol  98 
  521. xlCylinderColClustered  92 
  522. xlCylinderColStacked  93 
  523. xlCylinderColStacked100  94 
  524. xlDoughnut  -4120 
  525. xlDoughnutExploded  80 
  526. xlLine  4 
  527. xlLineMarkers  65 
  528. xlLineMarkersStacked  66 
  529. xlLIneMarkersStacked100  67 
  530. xlLineStacked  63 
  531. xlLineStacked100  64 
  532. xlPie  5 
  533. xlPieExploded  69 
  534. xlPieOfPie  68 
  535. xlPyramidBarClustered  109 
  536. xlPyramidBarStacked  110 
  537. xlPyramidBarStacked100  111 
  538. xlPyramidCol  112 
  539. xlPyramidColClustered  106 
  540. xlPyramidColStacked  107 
  541. xlPyramidColStacked100  108 
  542. xlRadar  -4151 
  543. xlRadarFilled  82 
  544. xlRadarMarkers  81 
  545. xlStockHLC  88 
  546. xlStockOHLC  89 
  547. xlStockVHLC  90 
  548. xlStockVOHLC  91 
  549. xlSurface  83 
  550. xlSurfaceTopView  85 
  551. xlSurfaceTopViewWireframe  86 
  552. xlSurfaceWireframe  84 
  553. xlXYScatter  -4169 
  554. xlXYScatterLines  74 
  555. xlXYScatterLinesNoMarkers  75 
  556. xlXYScatterSmooth  72 
  557. xlXYScatterSmoothNoMarkers  73 
  558. */
  559. XlClipboardFormat:{
  560. xlClipboardFormatBIFF:  8 ,
  561. xlClipboardFormatBIFF2:  18 ,
  562. xlClipboardFormatBIFF3:  20 ,
  563. xlClipboardFormatBIFF4:  30 ,
  564. xlClipboardFormatBinary:  15 ,
  565. xlClipboardFormatBitmap:  9 ,
  566. xlClipboardFormatCGM:  13 ,
  567. xlClipboardFormatCSV:  5 ,
  568. xlClipboardFormatDIF:  4 ,
  569. xlClipboardFormatDspText:  12 ,
  570. xlClipboardFormatEmbeddedObject:  21 ,
  571. xlClipboardFormatEmbedSource:  22 ,
  572. xlClipboardFormatLink:  11 ,
  573. xlClipboardFormatLinkSource:  23 ,
  574. xlClipboardFormatLinkSourceDesc:  32 ,
  575. xlClipboardFormatMovie:  24 ,
  576. xlClipboardFormatNative:  14 ,
  577. xlClipboardFormatObjectDesc:  31 ,
  578. xlClipboardFormatObjectLink:  19 ,
  579. xlClipboardFormatOwnerLink:  17 ,
  580. xlClipboardFormatPICT:  2 ,
  581. xlClipboardFormatPrintPICT:  3 ,
  582. xlClipboardFormatRTF:  7 ,
  583. xlClipboardFormatScreenPICT:  29 ,
  584. xlClipboardFormatStandardFont:  28 ,
  585. xlClipboardFormatStandardScale:  27 ,
  586. xlClipboardFormatSYLK:  6 ,
  587. xlClipboardFormatTable:  16 ,
  588. xlClipboardFormatText:  0 ,
  589. xlClipboardFormatToolFace:  25 ,
  590. xlClipboardFormatToolFacePICT:  26 ,
  591. xlClipboardFormatVALU:  1 ,
  592. xlClipboardFormatWK1:  10 },
  593. XlCmdType:{
  594. xlCmdCube:  1 ,
  595. xlCmdDefault:  4 ,
  596. xlCmdList:  5 ,
  597. xlCmdSql:  2 ,
  598. xlCmdTable:  3 },
  599. XlColorIndex:{
  600. xlColorIndexAutomatic:  -4105 ,
  601. xlColorIndexNone:  -4142 },
  602. XlColumnDataType:{
  603. xlDMYFormat:  4 ,
  604. xlDYMFormat:  7 ,
  605. xlEMDFormat:  10 ,
  606. xlGeneralFormat:  1 ,
  607. xlMDYFormat:  3 ,
  608. xlMYDFormat:  6 ,
  609. xlSkipColumn:  9 ,
  610. xlTextFormat:  2 ,
  611. xlYDMFormat:  8 ,
  612. xlYMDFormat:  5 },
  613. XlCommandUnderlines:{
  614. xlCommandUnderlinesAutomatic:  -4105 ,
  615. xlCommandUnderlinesOff:  -4146 ,
  616. xlCommandUnderlinesOn:  1 },
  617. /*
  618. XlCommentDisplayMode
  619. 常量 值 
  620. xlCommentAndIndicator  1 
  621. xlCommentIndicatorOnly  -1 
  622. xlNoIndicator  0 
  623. XlConsolidationFunction
  624. 常量 值 
  625. xlAverage  -4106 
  626. xlCount  -4112 
  627. xlCountNums  -4113 
  628. xlMax  -4136 
  629. xlMin  -4139 
  630. xlProduct  -4149 
  631. xlStDev  -4155 
  632. xlStDevP  -4156 
  633. xlSum  -4157 
  634. xlUnknown  1000 
  635. xlVar  -4164 
  636. xlVarP  -4165 
  637. XlCopyPictureFormat
  638. 常量 值 
  639. xlBitmap  2 
  640. xlPicture  -4147 
  641. XlCorruptLoad
  642. 常量 值 
  643. xlExtractData  2 
  644. xlNormalLoad  0 
  645. xlRepairFile  1 
  646. XlCreator
  647. 常量 值 
  648. xlCreatorCode  1480803660 
  649. XlCubeFieldType
  650. 常量 值 
  651. xlHierarchy  1 
  652. xlMeasure  2 
  653. xlSet  3 
  654. XlCutCopyMode
  655. 常量 值 
  656. xlCopy  1 
  657. xlCut  2 
  658. XlCVError
  659. 常量 值 
  660. xlErrDiv0  2007 
  661. xlErrNA  2042 
  662. xlErrName  2029 
  663. xlErrNull  2000 
  664. xlErrNum  2036 
  665. xlErrRef  2023 
  666. xlErrValue  2015 
  667. XlDataLabelPosition
  668. 常量 值 
  669. xlLabelPositionAbove  0 
  670. xlLabelPositionBelow  1 
  671. xlLabelPositionBestFit  5 
  672. xlLabelPositionCenter  -4108 
  673. xlLabelPositionCustom  7 
  674. xlLabelPositionInsideBase  4 
  675. xlLabelPositionInsideEnd  3 
  676. xlLabelPositionLeft  -4131 
  677. xlLabelPositionMixed  6 
  678. xlLabelPositionOutsideEnd  2 
  679. xlLabelPositionRight  -4152 
  680. XlDataLabelSeparator
  681. 常量 值 
  682. xlDataLabelSeparatorDefault  1 
  683. XlDataLabelsType
  684. 常量 值 
  685. xlDataLabelsShowBubbleSizes  6 
  686. xlDataLabelsShowLabel  4 
  687. xlDataLabelsShowLabelAndPercent  5 
  688. xlDataLabelsShowNone  -4142 
  689. xlDataLabelsShowPercent  3 
  690. xlDataLabelsShowValue  2 
  691. XlDataSeriesDate
  692. 常量 值 
  693. xlDay  1 
  694. xlMonth  3 
  695. xlWeekday  2 
  696. xlYear  4 
  697. XlDataSeriesType
  698. 常量 值 
  699. xlAutoFill  4 
  700. xlChronological  3 
  701. xlDataSeriesLinear  -4132 
  702. xlGrowth  2 
  703. XlDeleteShiftDirection
  704. 常量 值 
  705. xlShiftToLeft  -4159 
  706. xlShiftUp  -4162 
  707. XlDirection
  708. 常量 值 
  709. xlDown  -4121 
  710. xlToLeft  -4159 
  711. xlToRight  -4161 
  712. xlUp  -4162 
  713. XlDisplayBlanksAs
  714. 常量 值 
  715. xlInterpolated  3 
  716. xlNotPlotted  1 
  717. xlZero  2 
  718. XlDisplayDrawingObjects
  719. 常量 值 
  720. xlDisplayShapes  -4104 
  721. xlHide  3 
  722. xlPlaceholders  2 
  723. XlDisplayUnit
  724. 常量 值 
  725. xlHundredMillions  -8 
  726. xlHundreds  -2 
  727. xlHundredThousands  -5 
  728. xlMillionMillions  -10 
  729. xlMillions  -6 
  730. xlTenMillions  -7 
  731. xlTenThousands  -4 
  732. xlThousandMillions  -9 
  733. xlThousands  -3 
  734. XlDVAlertStyle
  735. 常量 值 
  736. xlValidAlertInformation  3 
  737. xlValidAlertStop  1 
  738. xlValidAlertWarning  2 
  739. XlDVType
  740. 常量 值 
  741. xlValidateCustom  7 
  742. xlValidateDate  4 
  743. xlValidateDecimal  2 
  744. xlValidateInputOnly  0 
  745. xlValidateList  3 
  746. xlValidateTextLength  6 
  747. xlValidateTime  5 
  748. xlValidateWholeNumber  1 
  749. XlEditionFormat
  750. 常量 值 
  751. xlBIFF  2 
  752. xlPICT  1 
  753. xlRTF  4 
  754. xlVALU  8 
  755. XlEditionOptionsOption
  756. 常量 值 
  757. xlAutomaticUpdate  4 
  758. xlCancel  1 
  759. xlChangeAttributes  6 
  760. xlManualUpdate  5 
  761. xlOpenSource  3 
  762. xlSelect  3 
  763. xlSendPublisher  2 
  764. xlUpdateSubscriber  2 
  765. XlEditionType
  766. 常量 值 
  767. xlPublisher  1 
  768. xlSubscriber  2 
  769. XlEnableCancelKey
  770. 常量 值 
  771. xlDisabled  0 
  772. xlErrorHandler  2 
  773. xlInterrupt  1 
  774. XlEnableSelection
  775. 常量 值 
  776. xlNoRestrictions  0 
  777. xlNoSelection  -4142 
  778. xlUnlockedCells  1 
  779. XlEndStyleCap
  780. 常量 值 
  781. xlCap  1 
  782. xlNoCap  2 
  783. XlErrorBarDirection
  784. 常量 值 
  785. xlX  -4168 
  786. xlY  1 
  787. XlErrorBarInclude
  788. 常量 值 
  789. xlErrorBarIncludeBoth  1 
  790. xlErrorBarIncludeMinusValues  3 
  791. xlErrorBarIncludeNone  -4142 
  792. xlErrorBarIncludePlusValues  2 
  793. XlErrorBarType
  794. 常量 值 
  795. xlErrorBarTypeCustom  -4114 
  796. xlErrorBarTypeFixedValue  1 
  797. xlErrorBarTypePercent  2 
  798. xlErrorBarTypeStDev  -4155 
  799. xlErrorBarTypeStError  4 
  800. XlErrorChecks
  801. 常量 值 
  802. xlEmptyCellReferences  7 
  803. xlEvaluateToError  1 
  804. xlInconsistentFormula  4 
  805. xlListDataValidation  8 
  806. xlNumberAsText  3 
  807. xlOmittedCells  5 
  808. xlTextDate  2 
  809. xlUnlockedFormulaCells  6 
  810. XlFileAccess
  811. 常量 值 
  812. xlReadOnly  3 
  813. xlReadWrite  2 
  814. XlFileFormat
  815. 常量 值 
  816. xlAddIn  18 
  817. xlCSV  6 
  818. xlCSVMac  22 
  819. xlCSVMSDOS  24 
  820. xlCSVWindows  23 
  821. xlCurrentPlatformText  -4158 
  822. xlDBF2  7 
  823. xlDBF3  8 
  824. xlDBF4  11 
  825. xlDIF  9 
  826. xlExcel2  16 
  827. xlExcel2FarEast  27 
  828. xlExcel3  29 
  829. xlExcel4  33 
  830. xlExcel4Workbook  35 
  831. xlExcel5  39 
  832. xlExcel7  39 
  833. xlExcel9795  43 
  834. xlHtml  44 
  835. xlIntlAddIn  26 
  836. xlIntlMacro  25 
  837. xlSYLK  2 
  838. xlTemplate  17 
  839. xlTextMac  19 
  840. xlTextMSDOS  21 
  841. xlTextPrinter  36 
  842. xlTextWindows  20 
  843. xlUnicodeText  42 
  844. xlWebArchive  45 
  845. xlWJ2WD1  14 
  846. xlWJ3  40 
  847. xlWJ3FJ3  41 
  848. xlWK1  5 
  849. xlWK1ALL  31 
  850. xlWK1FMT  30 
  851. xlWK3  15 
  852. xlWK3FM3  32 
  853. xlWK4  38 
  854. xlWKS  4 
  855. xlWorkbookNormal  -4143 
  856. xlWorks2FarEast  28 
  857. xlWQ1  34 
  858. xlXMLData  47 
  859. xlXMLSpreadsheet  46 
  860. XlFillWith
  861. 常量 值 
  862. xlFillWithAll  -4104 
  863. xlFillWithContents  2 
  864. xlFillWithFormats  -4122 
  865. XlFilterAction
  866. 常量 值 
  867. xlFilterCopy  2 
  868. xlFilterInPlace  1 
  869. XlFindLookIn
  870. 常量 值 
  871. xlComments  -4144 
  872. xlFormulas  -4123 
  873. xlValues  -4163 
  874. XlFormatConditionOperator
  875. 常量 值 
  876. xlBetween  1 
  877. xlEqual  3 
  878. xlGreater  5 
  879. xlGreaterEqual  7 
  880. xlLess  6 
  881. xlLessEqual  8 
  882. xlNotBetween  2 
  883. xlNotEqual  4 
  884. XlFormatConditionType
  885. 常量 值 
  886. xlCellValue  1 
  887. xlExpression  2 
  888. XlFormControl
  889. 常量 值 
  890. xlButtonControl  0 
  891. xlCheckBox  1 
  892. xlDropDown  2 
  893. xlEditBox  3 
  894. xlGroupBox  4 
  895. xlLabel  5 
  896. xlListBox  6 
  897. xlOptionButton  7 
  898. xlScrollBar  8 
  899. xlSpinner  9 
  900. XlFormulaLabel
  901. 常量 值 
  902. xlColumnLabels  2 
  903. xlMixedLabels  3 
  904. xlNoLabels  -4142 
  905. xlRowLabels  1 
  906. */
  907. XlHAlign:{
  908. xlHAlignCenter:  -4108 ,
  909. xlHAlignCenterAcrossSelection:  7 ,
  910. xlHAlignDistributed:  -4117 ,
  911. xlHAlignFill:  5 ,
  912. xlHAlignGeneral:  1 ,
  913. xlHAlignJustify:  -4130 ,
  914. xlHAlignLeft:  -4131 ,
  915. xlHAlignRight:  -4152 },
  916. /*
  917. XlHebrewModes
  918. 常量 值 
  919. xlHebrewFullScript  0 
  920. xlHebrewMixedAuthorizedScript  3 
  921. xlHebrewMixedScript  2 
  922. xlHebrewPartialScript  1 
  923. XlHighlightChangesTime
  924. 常量 值 
  925. xlAllChanges  2 
  926. xlNotYetReviewed  3 
  927. xlSinceMyLastSave  1 
  928. XlHtmlType
  929. 常量 值 
  930. xlHtmlCalc  1 
  931. xlHtmlChart  3 
  932. xlHtmlList  2 
  933. xlHtmlStatic  0 
  934. XlIMEMode
  935. 常量 值 
  936. xlIMEModeAlpha  8 
  937. xlIMEModeAlphaFull  7 
  938. xlIMEModeDisable  3 
  939. xlIMEModeHangul  10 
  940. xlIMEModeHangulFull  9 
  941. xlIMEModeHiragana  4 
  942. xlIMEModeKatakana  5 
  943. xlIMEModeKatakanaHalf  6 
  944. xlIMEModeNoControl  0 
  945. xlIMEModeOff  2 
  946. xlIMEModeOn  1 
  947. XlImportDataAs
  948. 常量 值 
  949. xlPivotTableReport  1 
  950. xlQueryTable  0 
  951. XlInsertFormatOrigin
  952. 常量 值 
  953. xlFormatFromLeftOrAbove  0 
  954. xlFormatFromRightOrBelow  1 
  955. XlInsertShiftDirection
  956. 常量 值 
  957. xlShiftDown  -4121 
  958. xlShiftToRight  -4161 
  959. XlLayoutFormType
  960. 常量 值 
  961. xlOutline  1 
  962. xlTabular  0 
  963. XlLegendPosition
  964. 常量 值 
  965. xlLegendPositionBottom  -4107 
  966. xlLegendPositionCorner  2 
  967. xlLegendPositionLeft  -4131 
  968. xlLegendPositionRight  -4152 
  969. xlLegendPositionTop  -4160 
  970. */
  971. XlLineStyle:{
  972. xlContinuous:  1 ,
  973. xlDash:  -4115 ,
  974. xlDashDot:  4 ,
  975. xlDashDotDot:  5 ,
  976. xlDot:  -4118 ,
  977. xlDouble:  -4119 ,
  978. xlLineStyleNone:  -4142 ,
  979. xlSlantDashDot:  13 },
  980. /*
  981. XlLink
  982. 常量 值 
  983. xlExcelLinks  1 
  984. xlOLELinks  2 
  985. xlPublishers  5 
  986. xlSubscribers  6 
  987. XlLinkInfo
  988. 常量 值 
  989. xlEditionDate  2 
  990. xlLinkInfoStatus  3 
  991. xlUpdateState  1 
  992. XlLinkInfoType
  993. 常量 值 
  994. xlLinkInfoOLELinks  2 
  995. xlLinkInfoPublishers  5 
  996. xlLinkInfoSubscribers  6 
  997. XlLinkStatus
  998. 常量 值 
  999. xlLinkStatusCopiedValues  10 
  1000. xlLinkStatusIndeterminate  5 
  1001. xlLinkStatusInvalidName  7 
  1002. xlLinkStatusMissingFile  1 
  1003. xlLinkStatusMissingSheet  2 
  1004. xlLinkStatusNotStarted  6 
  1005. xlLinkStatusOK  0 
  1006. xlLinkStatusOld  3 
  1007. xlLinkStatusSourceNotCalculated  4 
  1008. xlLinkStatusSourceNotOpen  8 
  1009. xlLinkStatusSourceOpen  9 
  1010. XlLinkType
  1011. 常量 值 
  1012. xlLinkTypeExcelLinks  1 
  1013. xlLinkTypeOLELinks  2 
  1014. XlListConflict
  1015. 常量 值 
  1016. xlListConflictDialog  0 
  1017. xlListConflictDiscardAllConflicts  2 
  1018. xlListConflictError  3 
  1019. xlListConflictRetryAllConflicts  1 
  1020. XlListDataType
  1021. 常量 值 
  1022. xlListDataTypeCheckbox  9 
  1023. xlListDataTypeChoice  6 
  1024. xlListDataTypeChoiceMulti  7 
  1025. xlListDataTypeCounter  11 
  1026. xlListDataTypeCurrency  4 
  1027. xlListDataTypeDateTime  5 
  1028. xlListDataTypeHyperLink  10 
  1029. xlListDataTypeListLookup  8 
  1030. xlListDataTypeMultiLineRichText  12 
  1031. xlListDataTypeMultiLineText  2 
  1032. xlListDataTypeNone  0 
  1033. xlListDataTypeNumber  3 
  1034. xlListDataTypeText  1 
  1035. XlListObjectSourceType
  1036. 常量 值 
  1037. xlSrcExternal  0 
  1038. xlSrcRange  1 
  1039. xlSrcXml  2 
  1040. XlLocationInTable
  1041. 常量 值 
  1042. xlColumnHeader  -4110 
  1043. xlColumnItem  5 
  1044. xlDataHeader  3 
  1045. xlDataItem  7 
  1046. xlPageHeader  2 
  1047. xlPageItem  6 
  1048. xlRowHeader  -4153 
  1049. xlRowItem  4 
  1050. xlTableBody  8 
  1051. XlLookAt
  1052. 常量 值 
  1053. xlPart  2 
  1054. xlWhole  1 
  1055. XlMailSystem
  1056. 常量 值 
  1057. xlMAPI  1 
  1058. xlNoMailSystem  0 
  1059. xlPowerTalk  2 
  1060. XlMarkerStyle
  1061. 常量 值 
  1062. xlMarkerStyleAutomatic  -4105 
  1063. xlMarkerStyleCircle  8 
  1064. xlMarkerStyleDash  -4115 
  1065. xlMarkerStyleDiamond  2 
  1066. xlMarkerStyleDot  -4118 
  1067. xlMarkerStyleNone  -4142 
  1068. xlMarkerStylePicture  -4147 
  1069. xlMarkerStylePlus  9 
  1070. xlMarkerStyleSquare  1 
  1071. xlMarkerStyleStar  5 
  1072. xlMarkerStyleTriangle  3 
  1073. xlMarkerStyleX  -4168 
  1074. XlMouseButton
  1075. 常量 值 
  1076. xlNoButton  0 
  1077. xlPrimaryButton  1 
  1078. xlSecondaryButton  2 
  1079. XlMousePointer
  1080. 常量 值 
  1081. xlDefault  -4143 
  1082. xlIBeam  3 
  1083. xlNorthwestArrow  1 
  1084. xlWait  2 
  1085. XlMSApplication
  1086. 常量 值 
  1087. xlMicrosoftAccess  4 
  1088. xlMicrosoftFoxPro  5 
  1089. xlMicrosoftMail  3 
  1090. xlMicrosoftPowerPoint  2 
  1091. xlMicrosoftProject  6 
  1092. xlMicrosoftSchedulePlus  7 
  1093. xlMicrosoftWord  1 
  1094. */
  1095. XlObjectSize:{
  1096. xlFitToPage:  2 ,
  1097. xlFullPage:  3 ,
  1098. xlScreenSize:  1 },
  1099. /*
  1100. XlOLEType
  1101. 常量 值 
  1102. xlOLEControl  2 
  1103. xlOLEEmbed  1 
  1104. xlOLELink  0 
  1105. XlOLEVerb
  1106. 常量 值 
  1107. xlVerbOpen  2 
  1108. xlVerbPrimary  1 
  1109. XlOrder
  1110. 常量 值 
  1111. xlDownThenOver  1 
  1112. xlOverThenDown  2 
  1113. */
  1114. XlOrientation:{
  1115. xlDownward:  -4170 ,
  1116. xlHorizontal:  -4128 ,
  1117. xlUpward : -4171 ,
  1118. xlVertical:  -4166 },
  1119. XlPageBreak:{
  1120. xlPageBreakAutomatic:  -4105 ,
  1121. xlPageBreakManual:  -4135 ,
  1122. xlPageBreakNone: -4142 },
  1123. XlPageBreakExtent:{
  1124. xlPageBreakFull:  1 ,
  1125. xlPageBreakPartial:  2 },
  1126. XlPageOrientation:{
  1127. xlLandscape:  2 ,
  1128. xlPortrait:  1 },
  1129. XlPaperSize:{
  1130. xlPaper10x14:  16 ,
  1131. xlPaper11x17:  17 ,
  1132. xlPaperA3:  8 ,
  1133. xlPaperA4:  9 ,
  1134. xlPaperA4Small:  10 ,
  1135. xlPaperA5:  11 ,
  1136. xlPaperB4:  12 ,
  1137. xlPaperB5:  13 ,
  1138. xlPaperCsheet:  24 ,
  1139. xlPaperDsheet:  25 ,
  1140. xlPaperEnvelope10:  20 ,
  1141. xlPaperEnvelope11:  21 ,
  1142. xlPaperEnvelope12:  22 ,
  1143. xlPaperEnvelope14:  23 ,
  1144. xlPaperEnvelope9:  19 ,
  1145. xlPaperEnvelopeB4:  33 ,
  1146. xlPaperEnvelopeB5:  34 ,
  1147. xlPaperEnvelopeB6:  35 ,
  1148. xlPaperEnvelopeC3:  29 ,
  1149. xlPaperEnvelopeC4:  30 ,
  1150. xlPaperEnvelopeC5:  28 ,
  1151. xlPaperEnvelopeC6:  31 ,
  1152. xlPaperEnvelopeC65:  32 ,
  1153. xlPaperEnvelopeDL:  27 ,
  1154. xlPaperEnvelopeItaly:  36 ,
  1155. xlPaperEnvelopeMonarch:  37 ,
  1156. xlPaperEnvelopePersonal:  38 ,
  1157. xlPaperEsheet:  26 ,
  1158. xlPaperExecutive:  7 ,
  1159. xlPaperFanfoldLegalGerman:  41 ,
  1160. xlPaperFanfoldStdGerman:  40 ,
  1161. xlPaperFanfoldUS:  39 ,
  1162. xlPaperFolio:  14 ,
  1163. xlPaperLedger:  4 ,
  1164. xlPaperLegal:  5 ,
  1165. xlPaperLetter:  1 ,
  1166. xlPaperLetterSmall:  2 ,
  1167. xlPaperNote:  18 ,
  1168. xlPaperQuarto:  15 ,
  1169. xlPaperStatement:  6 ,
  1170. xlPaperTabloid:  3 ,
  1171. xlPaperUser:  256 },
  1172. XlParameterDataType:{
  1173. xlParamTypeBigInt:  -5 ,
  1174. xlParamTypeBinary:  -2 ,
  1175. xlParamTypeBit:  -7 ,
  1176. xlParamTypeChar:  1 ,
  1177. xlParamTypeDate:  9 ,
  1178. xlParamTypeDecimal:  3 ,
  1179. xlParamTypeDouble:  8 ,
  1180. xlParamTypeFloat:  6 ,
  1181. xlParamTypeInteger:  4 ,
  1182. xlParamTypeLongVarBinary:  -4 ,
  1183. xlParamTypeLongVarChar:  -1 ,
  1184. xlParamTypeNumeric:  2 ,
  1185. xlParamTypeReal:  7 ,
  1186. xlParamTypeSmallInt:  5 ,
  1187. xlParamTypeTime:  10 ,
  1188. xlParamTypeTimestamp:  11 ,
  1189. xlParamTypeTinyInt:  -6 ,
  1190. xlParamTypeUnknown:  0 ,
  1191. xlParamTypeVarBinary:  -3 ,
  1192. xlParamTypeVarChar:  12 ,
  1193. xlParamTypeWChar:  -8 },
  1194. XlParameterType:{
  1195. xlConstant:  1 ,
  1196. xlPrompt:  0 ,
  1197. xlRange:  2 },
  1198. XlPasteSpecialOperation:{
  1199. xlPasteSpecialOperationAdd:  2 ,
  1200. xlPasteSpecialOperationDivide:  5 ,
  1201. xlPasteSpecialOperationMultiply:  4 ,
  1202. xlPasteSpecialOperationNone:  -4142 ,
  1203. xlPasteSpecialOperationSubtract:  3 },
  1204. XlPasteType:{
  1205. xlPasteAll:  -4104 ,
  1206. xlPasteAllExceptBorders:  7 ,
  1207. xlPasteColumnWidths:  8 ,
  1208. xlPasteComments:  -4144 ,
  1209. xlPasteFormats:  -4122 ,
  1210. xlPasteFormulas:  -4123 ,
  1211. xlPasteFormulasAndNumberFormats:  11 ,
  1212. xlPasteValidation : 6 ,
  1213. xlPasteValues:  -4163 ,
  1214. xlPasteValuesAndNumberFormats:  12 },
  1215. /*
  1216. XlPattern
  1217. 常量 值 
  1218. xlPatternAutomatic  -4105 
  1219. xlPatternChecker  9 
  1220. xlPatternCrissCross  16 
  1221. xlPatternDown  -4121 
  1222. xlPatternGray16  17 
  1223. xlPatternGray25  -4124 
  1224. xlPatternGray50  -4125 
  1225. xlPatternGray75  -4126 
  1226. xlPatternGray8  18 
  1227. xlPatternGrid  15 
  1228. xlPatternHorizontal  -4128 
  1229. xlPatternLightDown  13 
  1230. xlPatternLightHorizontal  11 
  1231. xlPatternLightUp  14 
  1232. xlPatternLightVertical  12 
  1233. xlPatternNone  -4142 
  1234. xlPatternSemiGray75  10 
  1235. xlPatternSolid  1 
  1236. xlPatternUp  -4162 
  1237. xlPatternVertical  -4166 
  1238. XlPhoneticAlignment
  1239. 常量 值 
  1240. xlPhoneticAlignCenter  2 
  1241. xlPhoneticAlignDistributed  3 
  1242. xlPhoneticAlignLeft  1 
  1243. xlPhoneticAlignNoControl  0 
  1244. XlPhoneticCharacterType
  1245. 常量 值 
  1246. xlHiragana  2 
  1247. xlKatakana  1 
  1248. xlKatakanaHalf  0 
  1249. xlNoConversion  3 
  1250. XlPictureAppearance
  1251. 常量 值 
  1252. xlPrinter  2 
  1253. xlScreen  1 
  1254. XlPictureConvertorType
  1255. 常量 值 
  1256. xlBMP  1 
  1257. xlCGM  7 
  1258. xlDRW  4 
  1259. xlDXF  5 
  1260. xlEPS  8 
  1261. xlHGL  6 
  1262. xlPCT  13 
  1263. xlPCX  10 
  1264. xlPIC  11 
  1265. xlPLT  12 
  1266. xlTIF  9 
  1267. xlWMF  2 
  1268. xlWPG  3 
  1269. XlPivotCellType
  1270. 常量 值 
  1271. xlPivotCellBlankCell  9 
  1272. xlPivotCellCustomSubtotal  7 
  1273. xlPivotCellDataField  4 
  1274. xlPivotCellDataPivotField  8 
  1275. xlPivotCellGrandTotal  3 
  1276. xlPivotCellPageFieldItem  6 
  1277. xlPivotCellPivotField  5 
  1278. xlPivotCellPivotItem  1 
  1279. xlPivotCellSubtotal  2 
  1280. xlPivotCellValue  0 
  1281. XlPivotFieldCalculation
  1282. 常量 值 
  1283. xlDifferenceFrom  2 
  1284. xlIndex  9 
  1285. xlNoAdditionalCalculation  -4143 
  1286. xlPercentDifferenceFrom  4 
  1287. xlPercentOf  3 
  1288. xlPercentOfColumn  7 
  1289. xlPercentOfRow  6 
  1290. xlPercentOfTotal  8 
  1291. xlRunningTotal  5 
  1292. XlPivotFieldDataType
  1293. 常量 值 
  1294. xlDate  2 
  1295. xlNumber  -4145 
  1296. xlText  -4158 
  1297. XlPivotFieldOrientation
  1298. 常量 值 
  1299. xlColumnField  2 
  1300. xlDataField  4 
  1301. xlHidden  0 
  1302. xlPageField  3 
  1303. xlRowField  1 
  1304. XlPivotFormatType
  1305. 常量 值 
  1306. xlPTClassic  20 
  1307. xlPTNone  21 
  1308. xlReport1  0 
  1309. xlReport10  9 
  1310. xlReport2  1 
  1311. xlReport3  2 
  1312. xlReport4  3 
  1313. xlReport5  4 
  1314. xlReport6  5 
  1315. xlReport7  6 
  1316. xlReport8  7 
  1317. xlReport9  8 
  1318. xlTable1  10 
  1319. xlTable10  19 
  1320. xlTable2  11 
  1321. xlTable3  12 
  1322. xlTable4  13 
  1323. xlTable5  14 
  1324. xlTable6  15 
  1325. xlTable7  16 
  1326. xlTable8  17 
  1327. xlTable9  18 
  1328. XlPivotTableMissingItems
  1329. 常量 值 
  1330. xlMissingItemsDefault  -1 
  1331. xlMissingItemsMax  32500 
  1332. xlMissingItemsNone  0 
  1333. XlPivotTableSourceType
  1334. 常量 值 
  1335. xlConsolidation  3 
  1336. xlDatabase  1 
  1337. xlExternal  2 
  1338. xlPivotTable  -4148 
  1339. xlScenario  4 
  1340. XlPivotTableVersionList
  1341. 常量 值 
  1342. xlPivotTableVersion10  1 
  1343. xlPivotTableVersion2000  0 
  1344. xlPivotTableVersionCurrent  -1 
  1345. XlPlacement
  1346. 常量 值 
  1347. xlFreeFloating  3 
  1348. xlMove  2 
  1349. xlMoveAndSize  1 
  1350. XlPlatform
  1351. 常量 值 
  1352. xlMacintosh  1 
  1353. xlMSDOS  3 
  1354. xlWindows  2 
  1355. */
  1356. XlPrintErrors:{
  1357. xlPrintErrorsBlank:  1 ,
  1358. xlPrintErrorsDash:  2 ,
  1359. xlPrintErrorsDisplayed:  0 ,
  1360. xlPrintErrorsNA:  3 },
  1361. XlPrintLocation:{
  1362. xlPrintInPlace:  16 ,
  1363. xlPrintNoComments:  -4142 ,
  1364. xlPrintSheetEnd:  1 },
  1365. /*
  1366. XlPriority
  1367. 常量 值 
  1368. xlPriorityHigh  -4127 
  1369. xlPriorityLow  -4134 
  1370. xlPriorityNormal  -4143 
  1371. XlPTSelectionMode
  1372. 常量 值 
  1373. xlBlanks  4 
  1374. xlButton  15 
  1375. xlDataAndLabel  0 
  1376. xlDataOnly  2 
  1377. xlFirstRow  256 
  1378. xlLabelOnly  1 
  1379. xlOrigin  3 
  1380. XlQueryType
  1381. 常量 值 
  1382. xlADORecordset  7 
  1383. xlDAORecordset  2 
  1384. xlODBCQuery  1 
  1385. xlOLEDBQuery  5 
  1386. xlTextImport  6 
  1387. xlWebQuery  4 
  1388. */
  1389. XlRangeAutoFormat:{
  1390. xlRangeAutoFormat3DEffects1:  13 ,
  1391. xlRangeAutoFormat3DEffects2:  14 ,
  1392. xlRangeAutoFormatAccounting1:  4 ,
  1393. xlRangeAutoFormatAccounting2:  5 ,
  1394. xlRangeAutoFormatAccounting3:  6 ,
  1395. xlRangeAutoFormatAccounting4:  17 ,
  1396. xlRangeAutoFormatClassic1:  1 ,
  1397. xlRangeAutoFormatClassic2:  2 ,
  1398. xlRangeAutoFormatClassic3:  3 ,
  1399. xlRangeAutoFormatClassicPivotTable:  31 ,
  1400. xlRangeAutoFormatColor1:  7 ,
  1401. xlRangeAutoFormatColor2:  8 ,
  1402. xlRangeAutoFormatColor3:  9 ,
  1403. xlRangeAutoFormatList1:  10 ,
  1404. xlRangeAutoFormatList2:  11 ,
  1405. xlRangeAutoFormatList3:  12 ,
  1406. xlRangeAutoFormatLocalFormat1:  15 ,
  1407. xlRangeAutoFormatLocalFormat2:  16 ,
  1408. xlRangeAutoFormatLocalFormat3:  19 ,
  1409. xlRangeAutoFormatLocalFormat4:  20 ,
  1410. xlRangeAutoFormatNone:  -4142 ,
  1411. xlRangeAutoFormatPTNone:  42 ,
  1412. xlRangeAutoFormatReport1:  21 ,
  1413. xlRangeAutoFormatReport10:  30 ,
  1414. xlRangeAutoFormatReport2:  22 ,
  1415. xlRangeAutoFormatReport3:  23 ,
  1416. xlRangeAutoFormatReport4:  24 ,
  1417. xlRangeAutoFormatReport5:  25 ,
  1418. xlRangeAutoFormatReport6:  26 ,
  1419. xlRangeAutoFormatReport7:  27 ,
  1420. xlRangeAutoFormatReport8:  28 ,
  1421. xlRangeAutoFormatReport9:  29 ,
  1422. xlRangeAutoFormatSimple:  -4154 ,
  1423. xlRangeAutoFormatTable1:  32 ,
  1424. xlRangeAutoFormatTable10:  41 ,
  1425. xlRangeAutoFormatTable2:  33 ,
  1426. xlRangeAutoFormatTable3:  34 ,
  1427. xlRangeAutoFormatTable4:  35 ,
  1428. xlRangeAutoFormatTable5:  36 ,
  1429. xlRangeAutoFormatTable6:  37 ,
  1430. xlRangeAutoFormatTable7:  38 ,
  1431. xlRangeAutoFormatTable8:  39 ,
  1432. xlRangeAutoFormatTable9:  40 },
  1433. /*
  1434. XlRangeValueDataType
  1435. 常量 值 
  1436. xlRangeValueDefault  10 
  1437. xlRangeValueMSPersistXML  12 
  1438. xlRangeValueXMLSpreadsheet  11 
  1439. XlReferenceStyle
  1440. 常量 值 
  1441. xlA1  1 
  1442. xlR1C1  -4150 
  1443. XlReferenceType
  1444. 常量 值 
  1445. xlAbsolute  1 
  1446. xlAbsRowRelColumn  2 
  1447. xlRelative  4 
  1448. xlRelRowAbsColumn  3 
  1449. XlRobustConnect
  1450. 常量 值 
  1451. xlAlways  1 
  1452. xlAsRequired  0 
  1453. xlNever  2 
  1454. XlRoutingSlipDelivery
  1455. 常量 值 
  1456. xlAllAtOnce  2 
  1457. xlOneAfterAnother  1 
  1458. XlRoutingSlipStatus
  1459. 常量 值 
  1460. xlNotYetRouted  0 
  1461. xlRoutingComplete  2 
  1462. xlRoutingInProgress  1 
  1463. XlRowCol
  1464. 常量 值 
  1465. xlColumns  2 
  1466. xlRows  1 
  1467. XlRunAutoMacro
  1468. 常量 值 
  1469. xlAutoActivate  3 
  1470. xlAutoClose  2 
  1471. xlAutoDeactivate  4 
  1472. xlAutoOpen  1 
  1473. XlSaveAction
  1474. 常量 值 
  1475. xlDoNotSaveChanges  2 
  1476. xlSaveChanges  1 
  1477. XlSaveAsAccessMode
  1478. 常量 值 
  1479. xlExclusive  3 
  1480. xlNoChange  1 
  1481. xlShared  2 
  1482. XlSaveConflictResolution
  1483. 常量 值 
  1484. xlLocalSessionChanges  2 
  1485. xlOtherSessionChanges  3 
  1486. xlUserResolution  1 
  1487. XlScaleType
  1488. 常量 值 
  1489. xlScaleLinear  -4132 
  1490. xlScaleLogarithmic  -4133 
  1491. XlSearchDirection
  1492. 常量 值 
  1493. xlNext  1 
  1494. xlPrevious  2 
  1495. XlSearchOrder
  1496. 常量 值 
  1497. xlByColumns  2 
  1498. xlByRows  1 
  1499. XlSearchWithin
  1500. 常量 值 
  1501. xlWithinSheet  1 
  1502. xlWithinWorkbook  2 
  1503. */
  1504. XlSheetType:{
  1505. xlChart:  -4109 ,
  1506. xlDialogSheet:  -4116 ,
  1507. xlExcel4IntlMacroSheet:  4 ,
  1508. xlExcel4MacroSheet:  3 ,
  1509. xlWorksheet:  -4167 },
  1510. /*
  1511. XlSheetVisibility
  1512. 常量 值 
  1513. xlSheetHidden  0 
  1514. xlSheetVeryHidden  2 
  1515. xlSheetVisible  -1 
  1516. XlSizeRepresents
  1517. 常量 值 
  1518. xlSizeIsArea  1 
  1519. xlSizeIsWidth  2 
  1520. XlSmartTagControlType
  1521. 常量 值 
  1522. xlSmartTagControlActiveX  13 
  1523. xlSmartTagControlButton  6 
  1524. xlSmartTagControlCheckbox  9 
  1525. xlSmartTagControlCombo  12 
  1526. xlSmartTagControlHelp  3 
  1527. xlSmartTagControlHelpURL  4 
  1528. xlSmartTagControlImage  8 
  1529. xlSmartTagControlLabel  7 
  1530. xlSmartTagControlLink  2 
  1531. xlSmartTagControlListbox  11 
  1532. xlSmartTagControlRadioGroup  14 
  1533. xlSmartTagControlSeparator  5 
  1534. xlSmartTagControlSmartTag  1 
  1535. xlSmartTagControlTextbox  10 
  1536. XlSmartTagDisplayMode
  1537. 常量 值 
  1538. xlButtonOnly  2 
  1539. xlDisplayNone  1 
  1540. xlIndicatorAndButton  0 
  1541. XlSortDataOption
  1542. 常量 值 
  1543. xlSortNormal  0 
  1544. xlSortTextAsNumbers  1 
  1545. XlSortMethod
  1546. 常量 值 
  1547. xlPinYin  1 
  1548. xlStroke  2 
  1549. XlSortMethodOld
  1550. 常量 值 
  1551. xlCodePage  2 
  1552. xlSyllabary  1 
  1553. XlSortOrder
  1554. 常量 值 
  1555. xlAscending  1 
  1556. xlDescending  2 
  1557. XlSortOrientation
  1558. 常量 值 
  1559. xlSortColumns  1 
  1560. xlSortRows  2 
  1561. XlSortType
  1562. 常量 值 
  1563. xlSortLabels  2 
  1564. xlSortValues  1 
  1565. XlSourceType
  1566. 常量 值 
  1567. xlSourceAutoFilter  3 
  1568. xlSourceChart  5 
  1569. xlSourcePivotTable  6 
  1570. xlSourcePrintArea  2 
  1571. xlSourceQuery  7 
  1572. xlSourceRange  4 
  1573. xlSourceSheet  1 
  1574. xlSourceWorkbook  0 
  1575. XlSpeakDirection
  1576. 常量 值 
  1577. xlSpeakByColumns  1 
  1578. xlSpeakByRows  0 
  1579. XlSpecialCellsValue
  1580. 常量 值 
  1581. xlErrors  16 
  1582. xlLogical  4 
  1583. xlNumbers  1 
  1584. xlTextValues  2 
  1585. XlSubscribeToFormat
  1586. 常量 值 
  1587. xlSubscribeToPicture  -4147 
  1588. xlSubscribeToText  -4158 
  1589. XlSubtototalLocationType
  1590. 常量 值 
  1591. xlAtBottom  2 
  1592. xlAtTop  1 
  1593. XlSummaryColumn
  1594. 常量 值 
  1595. xlSummaryOnLeft  -4131 
  1596. xlSummaryOnRight  -4152 
  1597. XlSummaryReportType
  1598. 常量 值 
  1599. xlStandardSummary  1 
  1600. xlSummaryPivotTable  -4148 
  1601. XlSummaryRow
  1602. 常量 值 
  1603. xlSummaryAbove  0 
  1604. xlSummaryBelow  1 
  1605. XlTabPosition
  1606. 常量 值 
  1607. xlTabPositionFirst  0 
  1608. xlTabPositionLast  1 
  1609. XlTextParsingType
  1610. 常量 值 
  1611. xlDelimited  1 
  1612. xlFixedWidth  2 
  1613. XlTextQualifier
  1614. 常量 值 
  1615. xlTextQualifierDoubleQuote  1 
  1616. xlTextQualifierNone  -4142 
  1617. xlTextQualifierSingleQuote  2 
  1618. XlTextVisualLayoutType
  1619. 常量 值 
  1620. xlTextVisualLTR  1 
  1621. xlTextVisualRTL  2 
  1622. XlTickLabelOrientation
  1623. 常量 值 
  1624. xlTickLabelOrientationAutomatic  -4105 
  1625. xlTickLabelOrientationDownward  -4170 
  1626. xlTickLabelOrientationHorizontal  -4128 
  1627. xlTickLabelOrientationUpward  -4171 
  1628. xlTickLabelOrientationVertical  -4166 
  1629. XlTickLabelPosition
  1630. 常量 值 
  1631. xlTickLabelPositionHigh  -4127 
  1632. xlTickLabelPositionLow  -4134 
  1633. xlTickLabelPositionNextToAxis  4 
  1634. xlTickLabelPositionNone  -4142 
  1635. XlTickMark
  1636. 常量 值 
  1637. xlTickMarkCross  4 
  1638. xlTickMarkInside  2 
  1639. xlTickMarkNone  -4142 
  1640. xlTickMarkOutside  3 
  1641. XlTimeUnit
  1642. 常量 值 
  1643. xlDays  0 
  1644. xlMonths  1 
  1645. xlYears  2 
  1646. XlToolbarProtection
  1647. 常量 值 
  1648. xlNoButtonChanges  1 
  1649. xlNoChanges  4 
  1650. xlNoDockingChanges  3 
  1651. xlNoShapeChanges  2 
  1652. xlToolbarProtectionNone  -4143 
  1653. XlTotalsCalculation
  1654. 常量 值 
  1655. xlTotalsCalculationAverage  2 
  1656. xlTotalsCalculationCount  3 
  1657. xlTotalsCalculationCountNums  4 
  1658. xlTotalsCalculationMax  6 
  1659. xlTotalsCalculationMin  5 
  1660. xlTotalsCalculationNone  0 
  1661. xlTotalsCalculationStdDev  7 
  1662. xlTotalsCalculationSum  1 
  1663. xlTotalsCalculationVar  8 
  1664. XlTrendlineType
  1665. 常量 值 
  1666. xlExponential  5 
  1667. xlLinear  -4132 
  1668. xlLogarithmic  -4133 
  1669. xlMovingAvg  6 
  1670. xlPolynomial  3 
  1671. xlPower  4 
  1672. */
  1673. XlUnderlineStyle:{
  1674. xlUnderlineStyleDouble:  -4119 ,
  1675. xlUnderlineStyleDoubleAccounting:  5 ,
  1676. xlUnderlineStyleNone:  -4142 ,
  1677. xlUnderlineStyleSingle:  2 ,
  1678. xlUnderlineStyleSingleAccounting:  4 },
  1679. /*
  1680. XlUpdateLinks
  1681. 常量 值 
  1682. xlUpdateLinksAlways  3 
  1683. xlUpdateLinksNever  2 
  1684. xlUpdateLinksUserSetting  1 
  1685. */
  1686. XlVAlign:{
  1687. xlVAlignBottom:  -4107 ,
  1688. xlVAlignCenter:  -4108 ,
  1689. xlVAlignDistributed:  -4117 ,
  1690. xlVAlignJustify:  -4130 ,
  1691. xlVAlignTop:  -4160 },
  1692. XlWBATemplate:{
  1693. xlWBATChart:  -4109 ,
  1694. xlWBATExcel4IntlMacroSheet:  4 ,
  1695. xlWBATExcel4MacroSheet:  3 ,
  1696. xlWBATWorksheet:  -4167 }
  1697. /*
  1698. XlWebFormatting
  1699. 常量 值 
  1700. xlWebFormattingAll  1 
  1701. xlWebFormattingNone  3 
  1702. xlWebFormattingRTF  2 
  1703. XlWebSelectionType
  1704. 常量 值 
  1705. xlAllTables  2 
  1706. xlEntirePage  1 
  1707. xlSpecifiedTables  3 
  1708. XlWindowState
  1709. 常量 值 
  1710. xlMaximized  -4137 
  1711. xlMinimized  -4140 
  1712. xlNormal  -4143 
  1713. XlWindowType
  1714. 常量 值 
  1715. xlChartAsWindow  5 
  1716. xlChartInPlace  4 
  1717. xlClipboard  3 
  1718. xlInfo  -4129 
  1719. xlWorkbook  1 
  1720. XlWindowView
  1721. 常量 值 
  1722. xlNormalView  1 
  1723. xlPageBreakPreview  2 
  1724. XlXLMMacroType
  1725. 常量 值 
  1726. xlCommand  2 
  1727. xlFunction  1 
  1728. xlNotXLM  3 
  1729. XlXmlExportResult
  1730. 常量 值 
  1731. xlXmlExportSuccess  0 
  1732. xlXmlExportValidationFailed  1 
  1733. XlXmlImportResult
  1734. 常量 值 
  1735. xlXmlImportElementsTruncated  1 
  1736. xlXmlImportSuccess  0 
  1737. xlXmlImportValidationFailed  2 
  1738. XlXmlLoadOption
  1739. 常量 值 
  1740. xlXmlLoadImportToList  2 
  1741. xlXmlLoadMapXml  3 
  1742. xlXmlLoadOpenXml  1 
  1743. xlXmlLoadPromptUser  0 
  1744. XlYesNoGuess
  1745. 常量 值 
  1746. xlGuess  0 
  1747. xlNo  2 
  1748. xlYes  1 
  1749. */
  1750. };
  1751. }
  1752. ();

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值