struct Progress::Theme
- Progress::Theme
- Struct
- Value
- Object
Defined in:
progress_bar/theme.crConstructors
Instance Method Summary
- #alt_progress_head : String | Nil
- #bar_end : String
- #bar_start : String
- #binary_prefix_format : Int::BinaryPrefixFormat
- #complete : String
- #decimal_separator : String
- #has_progress_head?
- #incomplete : String
- #number_format : String
- #progress_head : String | Nil
- #width : Int32
Constructor Detail
def self.new(complete : String = "▓", alt_progress_head : Nil | String = nil, progress_head : Nil | String = nil, incomplete : String = "░", bar_start : String = "[", bar_end : String = "]", width : Int32 = 60, number_format : String = "%.1f%%", binary_prefix_format : Int::BinaryPrefixFormat = :JEDEC, decimal_separator : String = ".")
#