Sha256: 71b7a41fc4689816dc4bb4bb302bba1914c625f4dceb6c792e613896719d248b
Contents?: true
Size: 419 Bytes
Versions: 13
Compression:
Stored size: 419 Bytes
Contents
module Sample class Text < Shape attr_accessor :text attr_accessor :font attr_accessor :font_size attr_accessor :just attr_accessor :text_color def initialize(text, left, top, wide, high, color=nil) super(left, top, wide, high, color) @text = text @font = 'helvetica' @font_size = 14 @just = 'left' @text_color = 'black' end end # Text end # Sample
Version data entries
13 entries across 13 versions & 1 rubygems