summaryrefslogtreecommitdiff
path: root/ext/win32ole/sample/excel2.rb
diff options
context:
space:
mode:
authorsuke <suke@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-09-09 13:01:21 +0000
committersuke <suke@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-09-09 13:01:21 +0000
commit9d0a6f3db702a17039c3e83bb4f2b1bad0f638b3 (patch)
tree094e68761f452b98a5667020387ff4e628bb96e4 /ext/win32ole/sample/excel2.rb
parent36dc2e4bcf2f900b800ed6de6fb7fbf77900ae6b (diff)
* ext/win32ole/sample/excel2.rb: remove some commented-out code.
rotate graph more slowly to see graph clearly. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47478 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/win32ole/sample/excel2.rb')
-rw-r--r--ext/win32ole/sample/excel2.rb7
1 files changed, 2 insertions, 5 deletions
diff --git a/ext/win32ole/sample/excel2.rb b/ext/win32ole/sample/excel2.rb
index dbe4178051..95af61ceb6 100644
--- a/ext/win32ole/sample/excel2.rb
+++ b/ext/win32ole/sample/excel2.rb
@@ -4,11 +4,9 @@ require 'win32ole'
ChartTypeVal = -4100;
# Creates OLE object to Excel
-#excel = WIN32OLE.new("excel.application.5")
excel = WIN32OLE.new("excel.application")
# Create and rotate the chart
-
excel.visible = TRUE;
excel.Workbooks.Add();
excel.Range("a1").value = 3;
@@ -18,13 +16,12 @@ excel.Range("a1:a3").Select();
excelchart = excel.Charts.Add();
excelchart.type = ChartTypeVal;
-i = 30
+i = 0
i.step(180, 10) do |rot|
-# excelchart['Rotation'] = rot;
excelchart.rotation=rot;
+ sleep 0.1
end
# Done, bye
excel.ActiveWorkbook.Close(0);
excel.Quit();
-