class Cryplot::Font
- Cryplot::Font
- Reference
- Object
Included Modules
Defined in:
plot/elems/font.crInstance Method Summary
-
#repr : String
returns a string representation of object of some class
-
#to_s(io : IO) : Nil
Appends a short String representation of this object which includes its class name and its object address.
Instance methods inherited from module Cryplot::FontMixin(Cryplot::Font)
font_name(name : String) : T
font_name,
font_repr : String
font_repr,
font_size(size : Int32) : T
font_size
Instance methods inherited from module Cryplot::BaseMixin(Cryplot::Font)
derived : T
derived,
repr : String
repr,
to_s(io : IO) : Nil
to_s
Instance Method Detail
def repr : String
#
Description copied from module Cryplot::BaseMixin(Cryplot::Font)
returns a string representation of object of some class
def to_s(io : IO) : Nil
#
Description copied from class Reference
Appends a short String representation of this object which includes its class name and its object address.
class Person
def initialize(@name : String, @age : Int32)
end
end
Person.new("John", 32).to_s # => #<Person:0x10a199f20>