设置活动工作表名称.
#Include <Excel.au3>
_ExcelSheetNameSet($oExcel, $sSheetName)
$oExcel | 由前面调用 _ExcelBookOpen() 或者 _ExcelBookNew() 函数返回的 Excel 对象 |
$sSheetName | 工作表新名称 |
成功: | 返回 1 |
失败: | 返回 0, 并设置 @error: |
@error: | 0 - 无错误 |
1 - 指定的对象不存在 |
; ***************************************************************
; 示例 1 - 打开工作簿并返回其对象标识符后, 设置活动工作表的名称
; *****************************************************************
#include <Excel.au3>
Local $oExcel = _ExcelBookNew() ;创建新工作簿, 并使其可见
_ExcelSheetNameSet($oExcel, "Example") ;重命名活动工作表
MsgBox(4096, "Exiting", "Press OK to Save File and Exit")
_ExcelBookSaveAs($oExcel, @TempDir & "\Temp.xls", "xls", 0, 1) ; 现在我们把它保存到临时目录; 必要时覆盖文件
_ExcelBookClose($oExcel) ; 最后我们关闭并退出
; ***************************************************************
; 示例 2 - 打开工作簿并返回其对象标识符后, 显示活动工作表的名称, 改变其名称并显示新的名称
; *****************************************************************
#include <Excel.au3>
$oExcel = _ExcelBookNew() ;创建新工作簿, 并使其可见
MsgBox(4096, "Sheet Name", "The Current Active Sheet Name Is:" & @CRLF & _ExcelSheetNameGet($oExcel))
_ExcelSheetNameSet($oExcel, "Example") ;重命名活动工作表
MsgBox(4096, "Sheet Name", "Now The Current Active Sheet Name Is:" & @CRLF & _ExcelSheetNameGet($oExcel))
MsgBox(4096, "Exiting", "Press OK to Save File and Exit")
_ExcelBookSaveAs($oExcel, @TempDir & "\Temp.xls", "xls", 0, 1) ; 现在我们把它保存到临时目录; 必要时覆盖文件
_ExcelBookClose($oExcel) ; 最后我们关闭并退出