Quick Start
Get started with BoxLang Spreadsheet Module in 5 minutes
📦 Installation
box install bx-spreadsheet@ortus✨ Your First Spreadsheet
Spreadsheet( "employees.xlsx" )
.setRowData( 1, [ "Name", "Department", "Salary" ] )
.addRow( [ "John Doe", "Engineering", 95000 ] )
.addRow( [ "Jane Smith", "Marketing", 85000 ] )
.addRow( [ "Bob Johnson", "Sales", 75000 ] )
.formatRow( 1, { bold: true, fgcolor: "blue", fontColor: "white" ] )
.autoSizeColumns()
.save();📖 Reading Spreadsheets
💾 Export to Different Formats
🎨 Basic Formatting
🔢 Working with Formulas
📊 Multiple Sheets
🔄 Modify Existing Spreadsheets
🎯 Common Patterns
Pattern 1: Import CSV to Excel
Pattern 2: Database Export
Pattern 3: Template-Based Reports
🎓 Next Steps
User GuideFormattingFormulasExamplesComplete API Reference
Fluent API💡 Tips
🤔 Need Help?
Last updated
Was this helpful?
