DragonFire_cp
7a8ee3e620
Fixed a bug 10422 with series' index
13 лет назад
coffeycathal_cp
9e5259f678
Added patch 11608 by arudoy. This patch adds the functionality Table.MergeCellsInColumn(int columnIndex, int startRow, int endRow)
13 лет назад
coffeycathal_cp
fb7b2b7cdf
Applied patch 11607 submitted by arudoy which solves the problem described in 10453.
Thank you for your contribution arudoy.
13 лет назад
coffeycathal_cp
19e393223f
Added: AutoFit fix by Roger Saele. Thank you for your contribution Roger.
13 лет назад
coffeycathal_cp
8b507159ae
Fixed a bug with insertDocument: Tables now insert correctly.
13 лет назад
dmitchern_cp
1f722091ff
1. override InsertTable(int rowCount, int columnCount) method in Table Cell because of bug.
Cell need paragraph in the end.
2. InsertTableBeforeSelf(Table t) behaviour changed, now it returns completely new table copied from parameter table.
3. InsertParagraphAfterSelf(Paragraph p) behaviour changed, now it returns completely new paragraph copied from parameter paragraph, but only in case for this is Paragraph
4. InsertTableAfterSelf(Table t) the same as for InsertTableBeforeSelf behaviour changed, now it returns completely new table copied from parameter table.
P.S. Look please my //IMPORTANT notes in code.
13 лет назад
coffeycathal_cp
811c7784ed
A complete re-write of a.insertDocument(b)
13 лет назад
coffeycathal_cp
80b48d5434
You can now apply formatting to empty Paragraphs. A very interesting use case was noted by a post of stackoverflow.com
http://stackoverflow.com/posts/9636913
This post required a hidden paragraph.
14 лет назад
coffeycathal_cp
d0196f43e6
Added Margin support in the form of
document.MarginTop
document.MarginBottom
document.MarginLeft
document.MarginRight
14 лет назад
coffeycathal_cp
925b39638c
v1.0.0.12
14 лет назад
coffeycathal_cp
1121147bd4
Fixed the issue Paragraph.InsertTableBeforeSelf() throws a null reference exception.
14 лет назад
coffeycathal_cp
592561975a
Fixed typo in Enumerations. ColoumnWidth has now been renamed to ColumnWidth.
14 лет назад
Nordes_cp
aa187ec2ef
While updating the CustomProperty, it does not update the DocX file properly if the template have been made with Word2010+.
* Fixed : CustomProperty not updating
14 лет назад
coffeycathal_cp
6a598bee23
Sandcastles (The documentation builders) now support Visual Studio 2010 integration. In this light I have added a Documentation project to the DocX solution. This will help to keep the DocX.chm file up to date.
14 лет назад
coffeycathal_cp
59652d225b
More testing yielded a case where the new inline Hyperlink support broke down.
I have fixed this issue now and I think thats it. I am now happy with the Hyperlink implementation.
14 лет назад
coffeycathal_cp
4d238d3c93
The get and set methods for Paragraph.Hyperlinks where broken.
This changeset fixes that and another issue. I discovered that Word allows Hyperlinks to be defined in two ways, inline and normal. DocX now supports both.
This changeset also contains new unit tests that will hopefully prevent Hyperlink support from braking again.
14 лет назад
coffeycathal_cp
22c64009b2
Removed all references (that I could find) to en-IE and replaced them with CultureInfo.CurrentLanguage
14 лет назад
coffeycathal_cp
67187a7a21
Fixed loads of bugs and issues. All test cases still pass.
14 лет назад
coffeycathal_cp
245f8cad79
Bug fix for issue found by RobHamlin.
InsertTable(index, x, y) was calling itself recursively instead of calling its base implementation which caused a stackoverflow.
14 лет назад
coffeycathal_cp
4535f49bab
Fixed a silly bug within document.InsertTable(int, int).
This bug caused a Table to be inserted "inside" the first element of a document's XML instead of "as" the first element.
14 лет назад
coffeycathal_cp
c9469689b6
Added a patch provided by ArtFeel. By default the document language use to be English (Ireland). DocX now uses CurrentCulture to infer the correct language. You can know also specify a specific language.
Thank you for this patch ArtFeel. Also thanks to MadBoy for reminding me about it, without you this might have been lost in the discussions section of codeplex. Sorry about the delay Madboy.
14 лет назад
DragonFire_cp
2f19e10c1c
Fix InsertDocument bag
14 лет назад
DragonFire_cp
0d97ddd6d6
Chaged InsertChart method
14 лет назад
DragonFire_cp
1772024263
Add InsertParagraphs method
14 лет назад
DragonFire_cp
da940113f7
Refactored InsertRow methods
14 лет назад
DragonFire_cp
5d9fa34e5e
Added Table.InsertRow(Row row) and Table.InsertRow(Row row, Int32 index) methods. These methods insert a copy of original row into the table.
14 лет назад
DragonFire_cp
6b142e0016
I have added chart's functionality (Bar, Line and Pie charts) with the legend, axis and 3D.
Also have changed our example.
14 лет назад
coffeycathal_cp
428d237114
DocX.cs: Added the Properties PageWidth and PageHeight.
Paragraph.cs: Added the Properties LineSpacing, LineSpacingBefore and LineSpacingAfter.
14 лет назад
DragonFire_cp
a843dc915a
Implemented a line chart, a pie chart and a bar chart.
14 лет назад
DragonFire_cp
ba0c0871eb
Completed to implement simple Chart and Series classes
14 лет назад
DragonFire_cp
c8e4262a6d
Made insert chart method and created legend class for this chart
14 лет назад
DragonFire_cp
8aba78443b
Fix GetNextFreeRelationshipID method
14 лет назад
DragonFire_cp
e37bcfe010
Fix Paragraph runs bag.
Start to develop chart functionality.
14 лет назад
DragonFire_cp
a51588f35e
Refactor the Table class: RowCount, ColumnCount, Rows properties and Insert/Remove methods. Also refactor CreateTable method - extract the same method CreateTableCell. Add powerfull unit test for this.
14 лет назад
coffeycathal_cp
fbea5f0b5b
14 лет назад
coffeycathal_cp
22bb86a8da
Fix for (Issue Tracker) Item #9526
14 лет назад
DragonFire_cp
43ed54b97c
Remove bin/debug/docx.dll for correct team working.
14 лет назад
DragonFire_cp
ab0640f886
Change example project, fix Table.RemoveColumn null reference exception.
14 лет назад
DragonFire_cp
c0f5ba0eed
ApplyTemplate bag has been fixed.
Added AppendEquation method into Paragraph and InsertEquation method into Container/Header/Footer/DocX classes.
14 лет назад
coffeycathal_cp
689f778abf
Table.removeRow(int index) has been fixed.
Added the method Row.Remove() its easier than calling Table.removeRow(int index)
14 лет назад
coffeycathal_cp
949a0f3828
Fixed a bug that was causing Paragraphs defined inside <snd> tags from being populated.
15 лет назад
coffeycathal_cp
fae1cfe176
Fixed a bug with ReplaceText.
Fixed a bug with DocX ignoring the CAPS Element.
15 лет назад
coffeycathal_cp
c582fc9487
One more time
15 лет назад
coffeycathal_cp
a4da01131d
Full checkin
15 лет назад
bdm_cp
87ab31c133
Removed strong name key, added replaceTests.docx as part of unit tests.
15 лет назад
coffeycathal_cp
33a9b7bcf9
Fixed a bug with ReplaceText which was not preserving text formatting.
15 лет назад
coffeycathal_cp
4695789cc1
DocX no longer miss recognizes Shapes as Images. DocX does not yet support Shapes or Charts.
15 лет назад
coffeycathal_cp
cd4dc19ae0
Fixed an issue with Paragraphs inside Tables not knowing which document they belong to.
15 лет назад
coffeycathal_cp
addbd332fa
Fixed StrongNameKey.pfx issues, password is Quvu4rey.
15 лет назад
bdm_cp
b97394809d
Added FindUniqueByPattern and FindAllbyPattern.
Added a new unit test to test ReplaceText, based on ReplaceTests.docx
The Test fails. This functionality worked in the previous release.
15 лет назад