[](slot)
click to toggle source
def [](slot)
@compound.__send__(@type + '_configinfo', slot)
end
[]=(slot, value)
click to toggle source
def []=(slot, value)
@compound.__send__(@type + '_configure', slot, value)
value
end
clone()
click to toggle source
def clone
fail RuntimeError, "cannot clone a descendant font"
end
dup()
click to toggle source
def dup
fail RuntimeError, "cannot dupulicate a descendant font"
end
font()
click to toggle source
def font
@compound.__send__(@type + '_font_id')
end
font_id()
click to toggle source
method_missing(id, *args)
click to toggle source
def method_missing(id, *args)
@compound.__send__(@type + '_' + id.id2name, *args)
end
name()
click to toggle source
to_eval()
click to toggle source
def to_eval
@compound.__send__(@type + '_font_id')
end
to_s()
click to toggle source