Skip to content

Commit a758737

Browse files
committed
V1.6.0 Released
1 parent e484b0c commit a758737

File tree

140 files changed

+2079
-16452
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

140 files changed

+2079
-16452
lines changed

Xceed.Document.NET/AssemblyVersionInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
33
DocX – DocX is the community edition of Xceed Words for .NET
44
5-
Copyright (C) 2009-2017 Xceed Software Inc.
5+
Copyright (C) 2009-2019 Xceed Software Inc.
66
77
This program is provided to you under the terms of the Microsoft Public
8-
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
8+
License (Ms-PL) as published at https://github.com/xceedsoftware/DocX/blob/master/license.md
99
1010
For more features and fast professional support,
1111
pick up Xceed Words for .NET at https://xceed.com/xceed-words-for-net/
@@ -20,7 +20,7 @@ This program is provided to you under the terms of the Microsoft Public
2020
internal static class _XceedVersionInfo
2121
{
2222
[System.Diagnostics.CodeAnalysis.SuppressMessage( "Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields" )]
23-
public const string BaseVersion = "1.5";
23+
public const string BaseVersion = "1.6";
2424
[System.Diagnostics.CodeAnalysis.SuppressMessage( "Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields" )]
2525
public const string Version = BaseVersion +
2626
".0.0";

Xceed.Document.NET/AssemblyVersionInfoCommon.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
33
DocX – DocX is the community edition of Xceed Words for .NET
44
5-
Copyright (C) 2009-2017 Xceed Software Inc.
5+
Copyright (C) 2009-2019 Xceed Software Inc.
66
77
This program is provided to you under the terms of the Microsoft Public
8-
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
8+
License (Ms-PL) as published at https://github.com/xceedsoftware/DocX/blob/master/license.md
99
1010
For more features and fast professional support,
1111
pick up Xceed Words for .NET at https://xceed.com/xceed-words-for-net/

Xceed.Document.NET/Properties/AssemblyInfo.cs

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
33
DocX – DocX is the community edition of Xceed Words for .NET
44
5-
Copyright (C) 2009-2017 Xceed Software Inc.
5+
Copyright (C) 2009-2019 Xceed Software Inc.
66
77
This program is provided to you under the terms of the Microsoft Public
8-
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
8+
License (Ms-PL) as published at https://github.com/xceedsoftware/DocX/blob/master/license.md
99
1010
For more features and fast professional support,
1111
pick up Xceed Words for .NET at https://xceed.com/xceed-words-for-net/
@@ -22,11 +22,11 @@ This program is provided to you under the terms of the Microsoft Public
2222
// set of attributes. Change these attribute values to modify the information
2323
// associated with an assembly.
2424
[assembly: AssemblyTitle( "Xceed Document for .NET" )]
25-
[assembly: AssemblyDescription( "This assembly implements the classes for Xceed Document for .NET." )]
25+
[assembly: AssemblyDescription( "This assembly implements the classes for Xceed Document for .NET Standard." )]
2626

2727
[assembly: AssemblyCompany( "Xceed Software Inc." )]
28-
[assembly: AssemblyProduct( "Xceed Document for .NET" )]
29-
[assembly: AssemblyCopyright( "Copyright (C) Xceed Software Inc. 2009-2018" )]
28+
[assembly: AssemblyProduct( "Xceed Document for .NET Standard" )]
29+
[assembly: AssemblyCopyright( "Copyright (C) Xceed Software Inc. 2009-2019" )]
3030
[assembly: AssemblyCulture("")]
3131

3232

@@ -61,6 +61,9 @@ This program is provided to you under the terms of the Microsoft Public
6161

6262

6363

64+
65+
66+
6467
#pragma warning disable 1699
6568
[assembly: AssemblyDelaySign( false )]
6669
[assembly: AssemblyKeyFile( @"..\..\sn.snk" )]

Xceed.Document.NET/Src/Bookmark.cs

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
33
DocX – DocX is the community edition of Xceed Words for .NET
44
5-
Copyright (C) 2009-2017 Xceed Software Inc.
5+
Copyright (C) 2009-2019 Xceed Software Inc.
66
77
This program is provided to you under the terms of the Microsoft Public
8-
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
8+
License (Ms-PL) as published at https://github.com/xceedsoftware/DocX/blob/master/license.md
99
1010
For more features and fast professional support,
1111
pick up Xceed Words for .NET at https://xceed.com/xceed-words-for-net/
@@ -45,6 +45,11 @@ public void SetText( string text )
4545
this.Paragraph.ReplaceAtBookmark( text, this.Name );
4646
}
4747

48+
public void Remove()
49+
{
50+
this.Paragraph.RemoveBookmark( this.Name );
51+
}
52+
4853
#endregion
4954
}
5055
}

Xceed.Document.NET/Src/BookmarkCollection.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
33
DocX – DocX is the community edition of Xceed Words for .NET
44
5-
Copyright (C) 2009-2017 Xceed Software Inc.
5+
Copyright (C) 2009-2019 Xceed Software Inc.
66
77
This program is provided to you under the terms of the Microsoft Public
8-
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
8+
License (Ms-PL) as published at https://github.com/xceedsoftware/DocX/blob/master/license.md
99
1010
For more features and fast professional support,
1111
pick up Xceed Words for .NET at https://xceed.com/xceed-words-for-net/

Xceed.Document.NET/Src/Border.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
33
DocX – DocX is the community edition of Xceed Words for .NET
44
5-
Copyright (C) 2009-2017 Xceed Software Inc.
5+
Copyright (C) 2009-2019 Xceed Software Inc.
66
77
This program is provided to you under the terms of the Microsoft Public
8-
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
8+
License (Ms-PL) as published at https://github.com/xceedsoftware/DocX/blob/master/license.md
99
1010
For more features and fast professional support,
1111
pick up Xceed Words for .NET at https://xceed.com/xceed-words-for-net/

Xceed.Document.NET/Src/Borders.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
33
DocX – DocX is the community edition of Xceed Words for .NET
44
5-
Copyright (C) 2009-2017 Xceed Software Inc.
5+
Copyright (C) 2009-2019 Xceed Software Inc.
66
77
This program is provided to you under the terms of the Microsoft Public
8-
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
8+
License (Ms-PL) as published at https://github.com/xceedsoftware/DocX/blob/master/license.md
99
1010
For more features and fast professional support,
1111
pick up Xceed Words for .NET at https://xceed.com/xceed-words-for-net/

Xceed.Document.NET/Src/Charts/Axis.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
33
DocX – DocX is the community edition of Xceed Words for .NET
44
5-
Copyright (C) 2009-2017 Xceed Software Inc.
5+
Copyright (C) 2009-2019 Xceed Software Inc.
66
77
This program is provided to you under the terms of the Microsoft Public
8-
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
8+
License (Ms-PL) as published at https://github.com/xceedsoftware/DocX/blob/master/license.md
99
1010
For more features and fast professional support,
1111
pick up Xceed Words for .NET at https://xceed.com/xceed-words-for-net/

Xceed.Document.NET/Src/Charts/BarChart.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
33
DocX – DocX is the community edition of Xceed Words for .NET
44
5-
Copyright (C) 2009-2017 Xceed Software Inc.
5+
Copyright (C) 2009-2019 Xceed Software Inc.
66
77
This program is provided to you under the terms of the Microsoft Public
8-
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
8+
License (Ms-PL) as published at https://github.com/xceedsoftware/DocX/blob/master/license.md
99
1010
For more features and fast professional support,
1111
pick up Xceed Words for .NET at https://xceed.com/xceed-words-for-net/

Xceed.Document.NET/Src/Charts/Chart.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
33
DocX – DocX is the community edition of Xceed Words for .NET
44
5-
Copyright (C) 2009-2017 Xceed Software Inc.
5+
Copyright (C) 2009-2019 Xceed Software Inc.
66
77
This program is provided to you under the terms of the Microsoft Public
8-
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
8+
License (Ms-PL) as published at https://github.com/xceedsoftware/DocX/blob/master/license.md
99
1010
For more features and fast professional support,
1111
pick up Xceed Words for .NET at https://xceed.com/xceed-words-for-net/

0 commit comments

Comments
 (0)