Sha256: 4dfc620c7387f2c7e943e3201c22988dfdb14845edcaf0779c6cec988d39e639
Contents?: true
Size: 470 Bytes
Versions: 40
Compression:
Stored size: 470 Bytes
Contents
module Test module Ox 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 # Ox end # Test
Version data entries
40 entries across 40 versions & 1 rubygems