Add Formatted Data to a Spreadsheet
时间:2021-02-06 10:06:13|栏目:JavaScript代码|点击: 次
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
复制代码 代码如下:
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
栏 目:JavaScript代码
下一篇:非常实用的ajax用户注册模块
本文标题:Add Formatted Data to a Spreadsheet
本文地址:http://www.codeinn.net/misctech/58137.html






