From: Alex Ciarlillo Date: 2006-11-29T04:52:43+09:00 Subject: drawing borders in excel Could anyone give me the line of code you would use to draw a border around a cell range in ruby? I know how to change the interior color of a cell like so: worksheet.Range("a#{currRow}").Interior['ColorIndex'] = 36 #yellow I found documentation for the Borders property, BorderAround object and a few other things but the docs are for VB and am not sure the proper syntax for ruby. I have gotten most of my info so far from here http://wiki.rubygarden.org/Ruby/page/show/ScriptingExcel but still cannot figure this one out. Thanks -- Posted via http://www.ruby-forum.com/.