coffeycathal_cp
fbea5f0b5b
14 anni fa
coffeycathal_cp
22bb86a8da
Fix for (Issue Tracker) Item #9526
14 anni fa
bdm_cp
c31f80e350
Added additional tests to replace finctions, including verifying additional aspects of the expected input file.
15 anni fa
coffeycathal_cp
fae1cfe176
Fixed a bug with ReplaceText.
Fixed a bug with DocX ignoring the CAPS Element.
15 anni fa
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 anni fa
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 anni fa
coffeycathal_cp
b5aa4ee366
Fixed a bug which resulted in Table.rows being null.
15 anni fa
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 anni fa
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 anni fa
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 anni fa
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 anni fa
coffeycathal_cp
782cb374cd
Added the function Paragraph.RemoveHyperlink(int index)
Added unit tests for Paragraph.RemoveHyperlink(int index)
15 anni fa
coffeycathal_cp
9c23da0444
Removed the following from the Paragraph class.
runLookup
BuildRunLookup();
Added new unit tests for Paragraph.InsertHyperlink()
15 anni fa
coffeycathal_cp
4569014c0e
Added Unit tests for InsertText, RemoveText, ReplaceText and subsequently fixed many bugs.
15 anni fa
AndreyKovalenko_cp
67752e1eaa
Added ApplyTemplate method for DocX.
Added getter and setter of document core properties for DocX.
Added unit test for ApplyTemplate.
15 anni fa
coffeycathal_cp
d9e96520c3
A weekends work
15 anni fa
coffeycathal_cp
25281f35d4
A work in progress
15 anni fa