Antony Liu
94234b1b5a
bug 61059: fix NamePtg to read unsigned shorts instead of signed shorts, avoiding a AIOOBE when a workbook contains more than 32k Names. Thanks to Travis Burtrum for the patch.
3 months ago
Antony Liu
06b228cec4
Bug 61063: enable test case Bug61063
3 months ago
Tony Q.
159be5844d
Merge pull request #1552 from antony-liu/poi/v3.17-patch3
Some patches from poi v3.17
3 months ago
Tony Q.
a3fcaecdba
Update README.md
3 months ago
Marko Lahma
5c34729ff1
Remove unnecessary array allocations for Split etc
3 months ago
Tony Qu
55a3dbfd97
Merge pull request #1547 from lahma/use-concrete-types
Fix analysis errors related to non-concrete type usage
3 months ago
Tony Qu
e663db1db6
Merge pull request #1535 from bmlpg/patch-2
Add InsertNewHyperlinkRun method, and fix InsertNewRun and RemoveRun methods
3 months ago
Bruno Gonçalves
70135dc1b1
Refactor index access in XWPFParagraph.cs
Removed unnecessary parentheses around index access for the `runs` list in multiple methods. This change improves code readability and maintains consistency without altering functionality.
3 months ago
Bruno Gonçalves
5c26dbdd3b
Add hyperlink tests to XWPFParagraph
Implemented a new test method `TestAddingHyperlinks` in `TestXWPFParagraph.cs`. This method verifies the functionality of adding hyperlinks to paragraphs in Word documents, including the creation of hyperlink runs, the count of runs, and the correct indexing of hyperlinks within the paragraph's runs and their XML representation.
3 months ago
Antony Liu
c193c8fafd
github-55: document that CellReference#isRowWithinRange(String rowNum, SpreadsheetVersion ss) expects rowNum to be parseable as an integer
3 months ago
Antony Liu
a11818c1e5
bug 61110: remove deprecated, misspelled CellReference#isRowWithnRange and #isColumnWithnRange methods
3 months ago
Antony Liu
d9985deee5
fix github action on non-Windows platforms
3 months ago
Antony Liu
9d5d2bfeec
Enable some test cases about font property of EscherGraphics
3 months ago
Antony Liu
7deb9f219d
github-55: NumberFormatException if XSSFName.setNameName is set with a long name that looks similar to a cell address. Thanks to Thomas S @Millie4Ever
3 months ago
Antony Liu
251e2fed8f
github-25: add enable locking and tab color in SXSSFSheet. Thanks to Danilo Rangel. This closes #25 .
3 months ago
Marko Lahma
a1c339b4fd
Fix analysis errors related to non-concrete type usage
3 months ago
Tony Qu
b544e4eed6
Merge pull request #1540 from antony-liu/poi/v3.17-patch2
Some patches from poi
3 months ago
antony liu
4a4690fcba
Merge branch 'master' into poi/v3.17-patch2
3 months ago
Tony Qu
2d3d238681
Merge pull request #1543 from coassoftwaresystems/master
Fix pattern formatting - return correct field for pattern fill foreground
3 months ago
Tony Qu
c0a6c29314
Merge pull request #1519 from bmlpg/patch-1
Account for image resolution units other than pixels per inch
3 months ago
Tony Qu
6f26cb3192
Merge pull request #1524 from Kazbek/master
Fix XWPFDocument FindAndReplaceTextInParagraph
3 months ago
Tony Qu
670234df9f
Merge pull request #1541 from lahma/fix-analyzer-issues
Fix analyzer reported issues
3 months ago
Tony Qu
68ce2689aa
Merge pull request #1544 from lahma/net9-sdk
Use NET 9 SDK in GitHub Actions to compile solution
3 months ago
Marko Lahma
1278918598
Use NET 9 SDK to compile solution
4 months ago
Pieter Polak
1d1539473a
Fix pattern formatting - return correct field for pattern fill foreground color
4 months ago
Tony Qu
50016c28c0
Merge pull request #1542 from LessIsMoreInSZ/NewZtring
Use ZString StringBuilder to replace System.Text.StringBuilder
4 months ago
JYJ
7888f0aaf1
commit dependency
4 months ago
Marko Lahma
31c899c60e
Fix analyzer reported issues
* Use 'string.Contains(char)' instead of 'string.Contains(string)' when searching for a single character
* Type 'XXX' can be sealed because it has no subtypes in its containing assembly and is not externally visible
* To avoid double lookup, call 'TryAdd' instead of calling 'Add' with a 'ContainsKey'
* Prefix generic type parameter name with 'T'
4 months ago
Tony Qu
015ce7ad82
Merge pull request #1530 from lahma/zero-size-array
Remove zero-length array allocations and use collection expression
4 months ago
Antony Liu
e690063d92
Copilot review fixes
4 months ago
Antony Liu
36992e4d39
github-32: speed up Irr() Excel formula computation by replacing Math.pow() with multiplication. Thanks to Daniel Kuan! This closes #32 .
4 months ago
Antony Liu
c36cc0f1a4
github-43: add disabled unit test showing a problem with ROUNDUP(3987*0.2, 2). Thanks to @FishMeat .
4 months ago
Antony Liu
18a1067de1
fix test cases of TableStyles
4 months ago
Antony Liu
94d2eca88b
github-52: add ExcelToHtmlConverter method that works on InputStreams. Thanks to Tony Zeng! This closes #52 .
4 months ago
Antony Liu
9643881d4f
Add table style test cases
4 months ago
Tony Qu.eth
64c300366d
Merge pull request #1533 from mostmand/feature/grouping-in-bar-and-column-charts
Add support for bar grouping in bar and column charts
4 months ago
Antony Liu
a470216af2
60184 - invalid OOXML produced when XSSFFont.getFamily() called with no families defined
4 months ago
Antony Liu
832f7be3e4
61060 - teach DataFormatter about conditional formatting rules with number formats
4 months ago
JYJ
d096dcc8f4
Change stringbuilder to zstring(this time changing only what needs to be changed)
4 months ago
Tony Qu.eth
377d94c8d2
Update README.md
4 months ago
Tony Qu.eth
08713c4bfd
Update README.md
4 months ago
Kazbek
390712fec5
Merge branch 'master' into master
4 months ago
Kazbek
2854be4836
Refactoring FindAndReplaceTextInParagraph
4 months ago
Tony Qu.eth
f21ef70e8a
Merge pull request #1520 from antony-liu/poi/v3.17-patch1
Some patches from poi 3.17
4 months ago
antony liu
2c0d1ee8d8
Merge branch 'master' into poi/v3.17-patch1
4 months ago
Bruno Gonçalves
f5a6181caa
Add InsertNewHyperlinkRun method to XWPFParagraph
I could not use the "CT_P.InsertNewHyperlink(int p)" method to insert the run on the underlying XML, since this method adds the hyperlink in the position within the range of hyperlinks, and not in the range of all paragraph xml elements.
4 months ago
Bruno Gonçalves
142d52b8b5
Fix run removal index in XWPFParagraph
The rPos variable was not being used.
4 months ago
Bruno Gonçalves
2af2513866
Fix InsertNewRun method in XWPFParagraph.cs
When "pos == runs.Count" the new run was being created at position 0 in the low-level XML, as the result of CT_P.InsertNewR underlying logic. This fix is in line with InsertNewRun implementation in Apache POI.
4 months ago
Marko Lahma
5f73594729
Remove zero-length array allocations and use collection expression
4 months ago
Tony Qu.eth
061a61a84d
Merge pull request #1531 from lahma/static-methods
Make non-public API methods static where applicable
4 months ago