malickf
2b78c4cbcf
second fix
9 years ago
malickf
6a26741c1a
fix AddImage bug : recursive loop
9 years ago
PrzemyslawKlys
b536b5e517
Merge pull request #99 from VictorLoktev/master
Bugfix in Row.Height, removing empty paragraphs in cells, Row.InsertRow keeps formatting
9 years ago
Viktor Loktev
d6c67573c6
Unit tests
9 years ago
Viktor Loktev
e58f0990b7
Bug fixed in row Height: size in units should be integer.
Add an option to insert row cloning all formatting.
9 years ago
Viktor Loktev
2780121890
Paragraph.RemoveText allows to remove empty paragraphs in cells
9 years ago
Viktor Loktev
59461357a6
The parameter removeEmptyParagraph is added to Container.ReplaceText
9 years ago
Viktor Loktev
387b432d65
Xml-doc excluded from project in Release
9 years ago
PrzemyslawKlys
a9f8f8a324
Merge pull request #98 from VictorLoktev/master
Bug fix and new features
9 years ago
Viktor Loktev
b2703a43eb
DocX.xml excluded from project in Release
9 years ago
Viktor Loktev
f8e015f721
Doc-Xml in Release is committed to GitHub
9 years ago
Viktor Loktev
92681c75a8
XML-doc in Release is On.
CS1591 warning is suppressed in Release.
9 years ago
Viktor Loktev
fa524c1814
Give a strong name for the assembly.
Assemblies are signed with keys without password.
9 years ago
Viktor Loktev
e1ebff1d71
Paragraph.RemoveText new paramenter to keep or remove empty paragraph after removing.
Paragraph.ReplaceText new paramenter to keep or remove empty paragraph after replacement.
9 years ago
Viktor Loktev
2d0c8a1c08
Bug in DocX.SaveAs(fileName) is fixed. (Before fix the size of the resulting file was =0).
9 years ago
PrzemyslawKlys
fd87d3bf4d
Merge pull request #87 from Twotsman/patch-2
Update HelperFunctions.cs
9 years ago
PrzemyslawKlys
cde8e67bc2
Merge pull request #97 from lahma/features/AddImage-performance-optimization
Optimization to AddImage
9 years ago
Marko Lahma
f92d6fb7e8
optimize AddImage
* minimize closure allocations by replacing LINQ with foreach when needed
* use lookups when possible
* reuse filtered items, pre-compute when possible
* use lighter Monitor for isolated storage locking instead of Mutex
* fix DocX references to be real project references instead of DLL references
9 years ago
PrzemyslawKlys
49b475d1f7
Merge pull request #88 from MaLevi4/ecl
Add method to insert chart after paragraph
9 years ago
mkalyakin
3af779e6b3
Add method to insert chart after paragraph
9 years ago
Twotsman
434e522c4e
Update HelperFunctions.cs
On my search to solve the inserting problem of tables and paragraphs I change this code.
If the document.paragraphLookup is always correct or filled no problem.
But why depend on document.paragraphLookup if it can be done direct?
So this is not a bug.
For me it is not clear why we have the dictionary paragraphLookup.
Is there a real need for the dictionary paragraphLookup, or is it just a result of historical starting ideas and should it be cleaned?
9 years ago
PrzemyslawKlys
6fc6ea1990
Merge pull request #86 from Twotsman/patch-1
Update Container.cs
9 years ago
Twotsman
49c0fab471
Update Container.cs
The paragraph startindex and endindex are corrupted in Document.paragraphs[].
The result was a wrong insertion of paragraphs and tables. (at wrong locations)
The function GetParagraphs had the bug. the variable index in that function should be updated after creation of the paragraph not before
The function public virtual List<int> FindAll(string str, RegexOptions options) was only resulting one item in the list. instead of a list of find idexes
If there was only find one no big problem but if it finds more the return index was wrong also .
I think it is a typo error, instead of indexes[0] it should be indexes[i].
9 years ago
PrzemyslawKlys
89b7952085
Merge pull request #85 from ermoll/master
correct width/height setting in Picture class
9 years ago
ermoll
9948f40cea
correct width/height setting in Picture class
next newid extended on CreatePicture in Paragraph class
SetWidthsPercentage pwidth calculation extended with * (96 / 72) to get pixels from points
9 years ago
PrzemyslawKlys
b2c123d27d
Merge pull request #76 from lucwuyts/master
Null check added. Was throwing exception when serializing document o…
9 years ago
Luc Wuyts
783b272d1a
Null check added. Was throwing exception when serializing document or part of document.
9 years ago
PrzemyslawKlys
9db5d2ac01
Merge pull request #75 from Henrys22/master
Mirror Margins
9 years ago
Henrys22
e8069948f0
Mirror Margins
Mirror Margins boolean attribute
9 years ago
PrzemyslawKlys
6296917633
Merge pull request #74 from lucwuyts/master
Unit test for script parsing (super- sub- script)
9 years ago
Luc Wuyts
f15d4882b8
Unit test for script parsing (super- sub- script)
9 years ago
PrzemyslawKlys
a2a6cae207
Merge pull request #73 from vzhikserg/master
Cleaning up the code
9 years ago
Sergii Zhevzhyk
fb6b2824fe
Simplifying some expressions
9 years ago
Sergii Zhevzhyk
d77f7c060f
Removing redundant code. Simplifying some expressions.
9 years ago
Sergii Zhevzhyk
56d3059b01
Cleaning up the tests
9 years ago
Sergii Zhevzhyk
73e999d51f
Removed unsued defined namespaces
9 years ago
PrzemyslawKlys
3a5fe60dc5
Rebuild .dll and documentation.chm
9 years ago
PrzemyslawKlys
452e19690d
Setting IndentationBefore and IndentationAfter makes an error when decimalsign is not a dot -> patch provided by lucwuyts
9 years ago
PrzemyslawKlys
30129bfe3f
Merge branch 'master' of https://github.com/WordDocX/DocX.git
9 years ago
PrzemyslawKlys
9334f7f695
Fix for Script property not parsed submited by lucwuyts
9 years ago
PrzemyslawKlys
72708a39b3
Merge pull request #72 from mdum/patch-1
design property: replace try/catch by Enum.IsDefined
9 years ago
mdum
aac62eb89d
design property: replace try/catch by Enum.IsDefined
9 years ago
PrzemyslawKlys
5cb0916bb4
Merge pull request #68 from delphin0850/delphin0850-patch-1
Delphin0850 Merge for Headers and Footers margin attribute
9 years ago
delphin0850
402a4960f8
Header and footer margin attribute added
9 years ago
delphin0850
408940d382
Header and footer margin attribute added
9 years ago
PrzemyslawKlys
556d79120e
Merge pull request #64 from lukewalshct/issue63
issue #63 - fixed FontSize() method in Paragraph.cs to accept half sizes
9 years ago
Luke Walsh
89d2971733
issue #63 - fixed FontSize() method in Paragraph.cs to accept half sizes
9 years ago
PrzemyslawKlys
4ed16a9824
Update README.md
9 years ago
PrzemyslawKlys
b614c6f685
Update README.md
9 years ago
PrzemyslawKlys
c3b15d42eb
Update
9 years ago