Add Formatted Data to a Spreadsheet

2022-01-11,,,

Script Code

复制代码 代码如下:
Set objExcel = CreateObject("Excel.Application") 

objExcel.Visible = True 
objExcel.Workbooks.Add 
objExcel.Cells(1, 1).Value = "Test value" 
objExcel.Cells(1, 1).Font.Bold = TRUE 
objExcel.Cells(1, 1).Font.Size = 24 
objExcel.Cells(1, 1).Font.ColorIndex = 3 

以上就是Add Formatted Data to a Spreadsheet的详细内容,更多请关注本站其它相关文章!

《Add Formatted Data to a Spreadsheet.doc》

下载本文的Word格式文档,以方便收藏与打印。