class CrystalXlsx::Workbook
- CrystalXlsx::Workbook
- Reference
- Object
Defined in:
crystal_xlsx/workbook.crInstance Method Summary
- #add_format(format : CrystalXlsx::Format)
- #add_format(**options)
- #add_worksheet(name)
- #add_worksheet(name, &)
- #close(filepath = "./temp.xlsx")
- #enable_shared_strings=(enable_shared_strings : Bool)
- #enable_shared_strings? : Bool
- #read : IO
- #save(filepath = "./temp.xlsx")
- #shared_strings : CrystalXlsx::SharedStrings
- #shared_strings=(shared_strings : CrystalXlsx::SharedStrings)
- #style : CrystalXlsx::Style
- #style=(style : CrystalXlsx::Style)
- #theme : CrystalXlsx::Theme
- #theme=(theme : CrystalXlsx::Theme)
- #to_io(io)
-
#to_s : String
Returns a nicely readable and concise string representation of this object, typically intended for users.
- #worksheets : Array(CrystalXlsx::Worksheet)
- #worksheets=(worksheets : Array(CrystalXlsx::Worksheet))
Instance Method Detail
def to_s : String
#
Description copied from class Object
Returns a nicely readable and concise string representation of this object, typically intended for users.
This method should usually not be overridden. It delegates to
#to_s(IO)
which can be overridden for custom implementations.
Also see #inspect
.