Skip to content

Commit cc383ad

Browse files
committed
V3.0.1 Released
1 parent 1203433 commit cc383ad

File tree

135 files changed

+1524
-4921
lines changed

Some content is hidden

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

135 files changed

+1524
-4921
lines changed

Xceed.Document.NET/AssemblyVersionInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
DocX – DocX is the community edition of Xceed Words for .NET
44
5-
Copyright (C) 2009-2023 Xceed Software Inc.
5+
Copyright (C) 2009-2024 Xceed Software Inc.
66
77
This program is provided to you under the terms of the XCEED SOFTWARE, INC.
88
COMMUNITY LICENSE AGREEMENT (for non-commercial use) as published at

Xceed.Document.NET/AssemblyVersionInfoCommon.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
DocX – DocX is the community edition of Xceed Words for .NET
44
5-
Copyright (C) 2009-2023 Xceed Software Inc.
5+
Copyright (C) 2009-2024 Xceed Software Inc.
66
77
This program is provided to you under the terms of the XCEED SOFTWARE, INC.
88
COMMUNITY LICENSE AGREEMENT (for non-commercial use) as published at

Xceed.Document.NET/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
DocX – DocX is the community edition of Xceed Words for .NET
44
5-
Copyright (C) 2009-2023 Xceed Software Inc.
5+
Copyright (C) 2009-2024 Xceed Software Inc.
66
77
This program is provided to you under the terms of the XCEED SOFTWARE, INC.
88
COMMUNITY LICENSE AGREEMENT (for non-commercial use) as published at
@@ -26,7 +26,7 @@ COMMUNITY LICENSE AGREEMENT (for non-commercial use) as published at
2626

2727
[assembly: AssemblyCompany( "Xceed Software Inc." )]
2828
[assembly: AssemblyProduct( "Xceed Document for .NET" )]
29-
[assembly: AssemblyCopyright( "Copyright (C) Xceed Software Inc. 2009-2023" )]
29+
[assembly: AssemblyCopyright( "Copyright (C) Xceed Software Inc. 2009-2024" )]
3030
[assembly: AssemblyCulture("")]
3131

3232

Xceed.Document.NET/Src/Bookmark.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
DocX – DocX is the community edition of Xceed Words for .NET
44
5-
Copyright (C) 2009-2023 Xceed Software Inc.
5+
Copyright (C) 2009-2024 Xceed Software Inc.
66
77
This program is provided to you under the terms of the XCEED SOFTWARE, INC.
88
COMMUNITY LICENSE AGREEMENT (for non-commercial use) as published at

Xceed.Document.NET/Src/BookmarkCollection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
DocX – DocX is the community edition of Xceed Words for .NET
44
5-
Copyright (C) 2009-2023 Xceed Software Inc.
5+
Copyright (C) 2009-2024 Xceed Software Inc.
66
77
This program is provided to you under the terms of the XCEED SOFTWARE, INC.
88
COMMUNITY LICENSE AGREEMENT (for non-commercial use) as published at

Xceed.Document.NET/Src/Border.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
DocX – DocX is the community edition of Xceed Words for .NET
44
5-
Copyright (C) 2009-2023 Xceed Software Inc.
5+
Copyright (C) 2009-2024 Xceed Software Inc.
66
77
This program is provided to you under the terms of the XCEED SOFTWARE, INC.
88
COMMUNITY LICENSE AGREEMENT (for non-commercial use) as published at
@@ -18,9 +18,6 @@ COMMUNITY LICENSE AGREEMENT (for non-commercial use) as published at
1818

1919
namespace Xceed.Document.NET
2020
{
21-
/// <summary>
22-
/// Represents a border of a table or table cell
23-
/// </summary>
2421
public class Border
2522
{
2623

Xceed.Document.NET/Src/Borders.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
DocX – DocX is the community edition of Xceed Words for .NET
44
5-
Copyright (C) 2009-2023 Xceed Software Inc.
5+
Copyright (C) 2009-2024 Xceed Software Inc.
66
77
This program is provided to you under the terms of the XCEED SOFTWARE, INC.
88
COMMUNITY LICENSE AGREEMENT (for non-commercial use) as published at

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

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
DocX – DocX is the community edition of Xceed Words for .NET
44
5-
Copyright (C) 2009-2023 Xceed Software Inc.
5+
Copyright (C) 2009-2024 Xceed Software Inc.
66
77
This program is provided to you under the terms of the XCEED SOFTWARE, INC.
88
COMMUNITY LICENSE AGREEMENT (for non-commercial use) as published at
@@ -25,9 +25,6 @@ COMMUNITY LICENSE AGREEMENT (for non-commercial use) as published at
2525
namespace Xceed.Document.NET
2626
{
2727

28-
/// <summary>
29-
/// Axis base class
30-
/// </summary>
3128
public abstract class Axis
3229
{
3330
#region Private properties
@@ -37,9 +34,6 @@ public abstract class Axis
3734

3835
#region Public Properties
3936

40-
/// <summary>
41-
/// ID of this Axis
42-
/// </summary>
4337
public string Id
4438
{
4539
get
@@ -48,9 +42,6 @@ public string Id
4842
}
4943
}
5044

51-
/// <summary>
52-
/// Return true if this axis is visible
53-
/// </summary>
5445
public bool IsVisible
5546
{
5647
get
@@ -119,9 +110,6 @@ public bool IsVisible
119110

120111
#region Internal Properties
121112

122-
/// <summary>
123-
/// Axis xml element
124-
/// </summary>
125113
internal XElement Xml
126114
{
127115
get; set;

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

Lines changed: 1 addition & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
DocX – DocX is the community edition of Xceed Words for .NET
44
5-
Copyright (C) 2009-2023 Xceed Software Inc.
5+
Copyright (C) 2009-2024 Xceed Software Inc.
66
77
This program is provided to you under the terms of the XCEED SOFTWARE, INC.
88
COMMUNITY LICENSE AGREEMENT (for non-commercial use) as published at
@@ -22,17 +22,10 @@ COMMUNITY LICENSE AGREEMENT (for non-commercial use) as published at
2222

2323
namespace Xceed.Document.NET
2424
{
25-
/// <summary>
26-
/// This element contains the 2-D bar or column series on this chart.
27-
/// 21.2.2.16 barChart (Bar Charts)
28-
/// </summary>
2925
public class BarChart : Chart
3026
{
3127
#region Public Properties
3228

33-
/// <summary>
34-
/// Specifies the possible directions for a bar chart.
35-
/// </summary>
3629
public BarDirection BarDirection
3730
{
3831
get
@@ -51,9 +44,6 @@ public BarDirection BarDirection
5144
}
5245
}
5346

54-
/// <summary>
55-
/// Specifies the possible groupings for a bar chart.
56-
/// </summary>
5747
public BarGrouping BarGrouping
5848
{
5949
get
@@ -79,9 +69,6 @@ public BarGrouping BarGrouping
7969
}
8070
}
8171

82-
/// <summary>
83-
/// Specifies that its contents contain a percentage between 0% and 500%.
84-
/// </summary>
8572
public Int32 GapWidth
8673
{
8774
get
@@ -138,10 +125,6 @@ protected override XElement GetChartTypeXElement()
138125
#endregion
139126
}
140127

141-
/// <summary>
142-
/// Specifies the possible directions for a bar chart.
143-
/// 21.2.3.3 ST_BarDir (Bar Direction)
144-
/// </summary>
145128
public enum BarDirection
146129
{
147130
[XmlName( "col" )]
@@ -150,10 +133,6 @@ public enum BarDirection
150133
Bar
151134
}
152135

153-
/// <summary>
154-
/// Specifies the possible groupings for a bar chart.
155-
/// 21.2.3.4 ST_BarGrouping (Bar Grouping)
156-
/// </summary>
157136
public enum BarGrouping
158137
{
159138
[XmlName( "clustered" )]

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

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
DocX – DocX is the community edition of Xceed Words for .NET
44
5-
Copyright (C) 2009-2023 Xceed Software Inc.
5+
Copyright (C) 2009-2024 Xceed Software Inc.
66
77
This program is provided to you under the terms of the XCEED SOFTWARE, INC.
88
COMMUNITY LICENSE AGREEMENT (for non-commercial use) as published at
@@ -22,9 +22,6 @@ COMMUNITY LICENSE AGREEMENT (for non-commercial use) as published at
2222

2323
namespace Xceed.Document.NET
2424
{
25-
/// <summary>
26-
/// Represents Category Axis
27-
/// </summary>
2825
public class CategoryAxis : Axis
2926
{
3027
internal CategoryAxis(XElement xml)

0 commit comments

Comments
 (0)