| Commit message (Collapse) | Author | Age |
| |
|
|
|
|
|
|
|
| |
Because that does the same thing, but without having to parse a format
string.
Signed-off-by: Olivier Mengué <dolmen@cpan.org>
|
| |
|
| |
|
|
|
|
| |
typo fixed
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
add error return value
exported functions:
GetMergeCells
ProtectSheet
UnprotectSheet
UpdateLinkedValue
GetMergeCells
SetSheetVisible
inner functions:
workSheetReader
copySheet
|
| |
|
|
|
|
| |
Fix file corruption issue when deleting a sheet containing a formula.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Exported functions:
SetCellStyle
InsertCol
RemoveCol
RemoveRow
InsertRow
DuplicateRow
DuplicateRowTo
SetRowHeight
GetRowHeight
GetCellValue
GetCellFormula
GetCellHyperLink
SetCellHyperLink
SetCellInt
SetCellBool
SetCellFloat
SetCellStr
SetCellDefault
GetCellStyle
SetCellValue
MergeCell
SetSheetRow
SetRowVisible
GetRowVisible
SetRowOutlineLevel
GetRowOutlineLevel
GetRows
Columns
SearchSheet
AddTable
GetPicture
AutoFilter
GetColVisible
SetColVisible
GetColOutlineLevel
SetColOutlineLevel
SetColWidth
GetColWidth
inner functions:
adjustHelper
adjustMergeCells
adjustAutoFilter
prepareCell
setDefaultTimeStyle
timeToExcelTime
addDrawingChart
addDrawingVML
addDrawingPicture
getTotalRowsCols
checkRow
addDrawingShape
addTable
|
| |
|
|
|
|
|
|
| |
This allows the user to set a floating point value into a
cell with a specific number of places after the decimal.
Closes #357
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Huge refactorig for consistent col/row numbering
Started from simply changing ToALphaString()/TitleToNumber() logic and related fixes.
But have to go deeper, do fixes, after do related fixes and again and again.
Major improvements:
1. Tests made stronger again (But still be weak).
2. "Empty" returns for incorrect input replaces with panic.
3. Check for correct col/row/cell naming & addressing by default.
4. Removed huge amount of duplicated code.
5. Removed ToALphaString(), TitleToNumber() and it helpers functions at all,
and replaced with SplitCellName(), JoinCellName(), ColumnNameToNumber(), ColumnNumberToName(), CellNameToCoordinates(), CoordinatesToCellName().
6. Minor fixes for internal variable naming for code readability (ex. col, row for input params, colIdx, rowIdx for slice indexes etc).
* Formatting fixes
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
- go test and godoc has been updated
|
|
|
|
|
|
|
| |
coordinate, relate issue #206;
- go test updated;
- Repository icon for SourceTree has been added
|
|
|
|
|
|
|
| |
at once, relate issue #96 and #194;
- go test and godoc updated;
- Note that this function performance has not been tested
|
| |
|
|
|
|
|
|
| |
skipping area checks when we are sure the cell can't be before or past the current row/col
Signed-off-by: Matthieu Bresson
|
|
|
|
| |
- go test updated
|
| |
|
|
|
|
| |
- godoc updated
|
|
|
|
|
|
| |
- go test and godoc updated
Signed-off-by: Ri Xu <xuri.me@gmail.com>
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
#25, #43, #47, #51, #89, #101, #116 and #120.
- go test updated
|
| |
|
|
|
|
| |
- go test added
|
| |
|
| |
|
|
|
|
|
|
| |
it support "External" and "Location"
Signed-off-by: Youngwan Kim <y103.kim@gmail.com>
|
|
|
|
| |
- godoc updated
|
|
|
|
| |
- Readme and go test updated
|
| |
|
|
|
|
| |
deserialization, relate issue #70.
|
|
|
|
|
|
| |
`ToAlphaString()` return value calculation changes, get more info from go doc. Relate issue #63;
- Readme and go doc updated
|
|
|
|
|
|
| |
deserialization, relate issue #64;
- Make function `ToAlphaString()` exportable, relate issue #63
|
| |
|
|
|
|
| |
value, relate issue #50.
|
|
|
|
|
| |
- Function `SetCellValue()` support `time.Time` data type parameter, relate issue #49;
- go doc and go test updated
|