当前位置:Gxlcms > JavaScript > jscript之List Excel Color Values

jscript之List Excel Color Values

时间:2021-07-01 10:21:17 帮助过:6人阅读

Description

Demonstration script that displays the various colors -- and their related color index -- available when programmatically controlling Microsoft Excel. 
Script Code
代码如下:
set objExcel = CreateObject("Excel.Application")

objExcel.Visible = True
objExcel.Workbooks.Add

For i = 1 to 56
    objExcel.Cells(i, 1).Value = i
    objExcel.Cells(i, 1).Interior.ColorIndex = i
Next

人气教程排行