Methods that construct text objects within a container
Draw a text string at (x,y). The string can be omitted. Optionally, define text chunks within the associated block.
[Source]
# File lib/rvg/text.rb, line 177 177: def text(x=0, y=0, text=nil, &block) 178: t = Text.new(x, y, text, &block) 179: @content << t 180: return t 181: end
[Validate]