class Squib::TemplateOption

Attributes

card_gap[W]
card_height[RW]
card_ordering[RW]
card_width[RW]
crop_lines[RW]
output_file[RW]
sheet_align[RW]
sheet_height[RW]
sheet_margin[W]
sheet_width[RW]
unit[RW]

Public Instance Methods

card_gap() click to toggle source
# File lib/squib/commands/data/template_option.rb, line 101
def card_gap
  if not @card_gap.instance_of? Gap
    @card_gap = Gap.new @card_gap
  else
    @card_gap
  end
end
sheet_margin() click to toggle source
# File lib/squib/commands/data/template_option.rb, line 93
def sheet_margin
  if not @sheet_margin.instance_of? Margin
    @sheet_margin = Margin.new @sheet_margin
  else
    @sheet_margin
  end
end