coffeycathal_cp
22bb86a8da
Fix for (Issue Tracker) Item #9526
14 år sedan
bdm_cp
c31f80e350
Added additional tests to replace finctions, including verifying additional aspects of the expected input file.
15 år sedan
coffeycathal_cp
fae1cfe176
Fixed a bug with ReplaceText.
Fixed a bug with DocX ignoring the CAPS Element.
15 år sedan
coffeycathal_cp
a4da01131d
Full checkin
15 år sedan
coffeycathal_cp
c0e3ffde2a
Added StrongNameKeys
15 år sedan
bdm_cp
4cb37f630d
Added ReplaceTests.docx in the project \documents\ folder
15 år sedan
bdm_cp
72d5772459
Removed the Strong Name Key
15 år sedan
bdm_cp
87ab31c133
Removed strong name key, added replaceTests.docx as part of unit tests.
15 år sedan
coffeycathal_cp
addbd332fa
Fixed StrongNameKey.pfx issues, password is Quvu4rey.
15 år sedan
coffeycathal_cp
d72617beae
Fixed issues with StrongNameKey.pfx
15 år sedan
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 år sedan
bdm_cp
ae48e62a69
Fixed all warnings. Most were "Exception e" where "Exception" was sufficient, but some were "hiding" base methods that needed a "new" keyword.
Removed the strong name key as per Cathal's suggestion.
15 år sedan
coffeycathal_cp
b5aa4ee366
Fixed a bug which resulted in Table.rows being null.
15 år sedan
coffeycathal_cp
f54ef25657
Fixed a bug with InsertParagraphAfterSelf and InsertParagraphBeforeSelf.
Big thanks to np83 not only for finding this bug but also posting a fix and unit tests.
15 år sedan
coffeycathal_cp
e0a7e8dd15
Files needed to run all unit tests.
15 år sedan
coffeycathal_cp
e36ca493b0
Added Examples Project.
This projects contains many of the examples upload on my blog.
Each time docx is released, I will update these examples so as they still work regardless of API changes.
15 år sedan
coffeycathal_cp
8aa52eff43
1) Strongly signed the project UnitTests.
2) Gave UnitTests internal access to DocX.dll
DocX AssemblyInfo.cs
[assembly: InternalsVisibleTo("UnitTests")]
3) Updated target framework to .NET 4.0.
4) Fixed bug with InsertText() Formatting object was set to null by default, should have been new Formatting()
15 år sedan
coffeycathal_cp
701de20428
Added support for document orientation (portrait or landscape), below is a code example of how to use this new feature.
// Create a new document.
using (DocX document = DocX.Create(@"C:\Users\Cathal\Desktop\Hello.docx"))
{
// Set this documents orientation to landscape and save.
document.PageLayout.Orientation = Orientation.Landscape;
document.SaveAs(@"Landscape.docx");
// Set this documents orientation to portrait and save.
document.PageLayout.Orientation = Orientation.Portrait;
document.SaveAs(@"Portrait.docx");
}
15 år sedan
coffeycathal_cp
1a4beec19b
Added Unit tests for Insert and Remove text.
Added bug fix for RemoveText when index is greater than possible.
Removed a few function overloads by utilising .NET 4.0 optional parameters.
15 år sedan
coffeycathal_cp
782cb374cd
Added the function Paragraph.RemoveHyperlink(int index)
Added unit tests for Paragraph.RemoveHyperlink(int index)
15 år sedan
coffeycathal_cp
9c23da0444
Removed the following from the Paragraph class.
runLookup
BuildRunLookup();
Added new unit tests for Paragraph.InsertHyperlink()
15 år sedan
coffeycathal_cp
4569014c0e
Added Unit tests for InsertText, RemoveText, ReplaceText and subsequently fixed many bugs.
15 år sedan
AndreyKovalenko_cp
67752e1eaa
Added ApplyTemplate method for DocX.
Added getter and setter of document core properties for DocX.
Added unit test for ApplyTemplate.
15 år sedan
coffeycathal_cp
d9e96520c3
A weekends work
15 år sedan
coffeycathal_cp
25281f35d4
A work in progress
15 år sedan
coffeycathal_cp
8f6aaf811a
17 år sedan
coffeycathal_cp
839c5c15c3
17 år sedan