轴标题设置
如何在Excel 2008中使用AppleScript将垂直轴标题应用为旋转标题,水平标题,垂直标题。
tell application "Microsoft Excel" tell worksheet 1 of active workbook set ochart to chart of chart object "chartname" tell ochart set cattitle to gat axis of ochart axis type category axis which axis primary axis tell cattitle set has title to 1 ----- how to apply a title position (Horizontal,Rotated,Vertical title) end tell end tell end tell
我在苹果excel字典里找不到苹果脚本命令有帮助。
尝试:
tell application "Microsoft Excel" tell worksheet "Sheet1" of active workbook set ochart1 to chart of chart object 1 tell ochart1 set valueA to get axis axis type value axis which axis primary axis tell valueA set it's has title to true set axis title text of it's axis title to "Rotated" end tell end tell end tell end tell
- 使用Apple脚本在A列的Excel电子表格中查找产品代码,并通过C行中的剪贴板查看值?
- Applescript – 设置Excel公式时转义引号
- 如何使用Applescript在Excel中循环选定的单元格?
- Applescript不会打开Excel 2011工作簿
- Applescript只执行一半我的代码
- 在AppleScript中获取月份的最后一天以及当月的假期
- 使用Applescript从Excel保存清洁CSV文件
- recursion的Excel电子表格input到Applescript iMessage / SMS Messaging
- 如何使用AppleScript在excel中将单元格值增加1?