Method: Notesgrip::NotesRichTextItem#AppendTable
- Defined in:
- lib/notesgrip/NotesRichTextItem.rb
#AppendTable(rows, columns, labels = nil, leftMargin = 1440, rtpsStyleArray = nil) ⇒ Object
42 43 44 45 46 47 48 49 50 |
# File 'lib/notesgrip/NotesRichTextItem.rb', line 42 def AppendTable( rows, columns, labels=nil, leftMargin=1440, rtpsStyleArray=nil ) raw_styleArray = [] if rtpsStyleArray rtpsStyleArray.each {|rtpsStyle| raw_styleArray.push toRaw(rtpsStyle) } end @raw_object.AppendTable( rows, columns, labels, leftMargin, raw_styleArray ) end |