Skip to content

Commit

Permalink
V1.3.0 Released
Browse files Browse the repository at this point in the history
  • Loading branch information
XceedBoucherS committed Feb 21, 2019
1 parent 25da69a commit 675a7d6
Show file tree
Hide file tree
Showing 68 changed files with 11,201 additions and 185 deletions.
1 change: 1 addition & 0 deletions Examples/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ private static void Main( string[] args )
MiscellaneousSample.CompanyReport();
MiscellaneousSample.CreateInvoice();


Console.WriteLine( "\nPress any key to exit." );
Console.ReadKey();
}
Expand Down
Binary file modified Examples/Samples/Bookmark/Output/InsertBookmarks.docx
Binary file not shown.
Binary file modified Examples/Samples/Bookmark/Output/ReplaceBookmarkText.docx
Binary file not shown.
Binary file modified Examples/Samples/Chart/Output/3DChart.docx
Binary file not shown.
Binary file modified Examples/Samples/Chart/Output/BarChart.docx
Binary file not shown.
Binary file modified Examples/Samples/Chart/Output/LineChart.docx
Binary file not shown.
Binary file modified Examples/Samples/Chart/Output/PieChart.docx
Binary file not shown.
Binary file modified Examples/Samples/Document/Output/AddCustomProperties.docx
Binary file not shown.
Binary file modified Examples/Samples/Document/Output/AppendDocument.docx
Binary file not shown.
Binary file modified Examples/Samples/Document/Output/ApplyTemplate.docx
Binary file not shown.
Binary file modified Examples/Samples/Equation/Output/EquationSample.docx
Binary file not shown.
Binary file modified Examples/Samples/HeaderFooter/Output/HeadersFooters.docx
Binary file not shown.
Binary file modified Examples/Samples/Hyperlink/Output/Hyperlinks.docx
Binary file not shown.
Binary file modified Examples/Samples/Image/Output/AddPicture.docx
Binary file not shown.
Binary file modified Examples/Samples/Image/Output/CopyPicture.docx
Binary file not shown.
Binary file modified Examples/Samples/Image/Output/ModifyImage.docx
Binary file not shown.
Binary file modified Examples/Samples/Line/Output/InsertHorizontalLine.docx
Binary file not shown.
Binary file modified Examples/Samples/List/Output/AddList.docx
Binary file not shown.
Binary file modified Examples/Samples/Margin/Output/Indentation.docx
Binary file not shown.
Binary file modified Examples/Samples/Margin/Output/Margins.docx
Binary file not shown.
Binary file modified Examples/Samples/Margin/Output/SetDirection.docx
Binary file not shown.
Binary file modified Examples/Samples/Miscellaneous/Output/CompanyReport.docx
Binary file not shown.
Binary file modified Examples/Samples/Miscellaneous/Output/CreateInvoice.docx
Binary file not shown.
Binary file modified Examples/Samples/Miscellaneous/Output/CreateRecipe.docx
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified Examples/Samples/Paragraph/Output/Heading.docx
Binary file not shown.
Binary file modified Examples/Samples/Paragraph/Output/SimpleFormattedParagraphs.docx
Binary file not shown.
Binary file modified Examples/Samples/Paragraph/Output/TextActions.docx
Binary file not shown.
3 changes: 2 additions & 1 deletion Examples/Samples/Paragraph/ParagraphSample.cs
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,12 @@ public static void SimpleFormattedParagraphs()
var p2 = document.InsertParagraph();

// Append some text and add formatting.
p2.Append( "This is a formatted paragraph using spacing," )
p2.Append( "This is a formatted paragraph using spacing, line spacing, " )
.Font( new Font( "Courier New" ) )
.FontSize( 10 )
.Italic()
.Spacing( 5 )
.SpacingLine( 22 )
.Append( "highlight" ).Highlight( Highlight.yellow ).UnderlineColor( Color.Blue ).CapsStyle( CapsStyle.caps )
.Append( " and strike through." ).StrikeThrough( StrikeThrough.strike )
.SpacingAfter( 40 );
Expand Down
Binary file modified Examples/Samples/Parallel/Output/OutputDoc1.docx
Binary file not shown.
Binary file modified Examples/Samples/Parallel/Output/OutputDoc2.docx
Binary file not shown.
Binary file modified Examples/Samples/Parallel/Output/OutputDoc3.docx
Binary file not shown.
47 changes: 47 additions & 0 deletions Examples/Samples/Pdf/PdfSample.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
/***************************************************************************************
DocX – DocX is the community edition of Xceed Words for .NET
Copyright (C) 2009-2017 Xceed Software Inc.
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
For more features and fast professional support,
pick up Xceed Words for .NET at https://xceed.com/xceed-words-for-net/
*************************************************************************************/
using System;
using System.IO;

namespace Xceed.Words.NET.Examples
{
public class PdfSample
{
#region Private Members


#endregion

#region Constructors

static PdfSample()
{
}

#endregion

#region Public Methods

/// <summary>
/// Load a document and convert it to PDF.
/// </summary>
public static void ConvertToPDF()
{

// This option is available when you buy Xceed Words for .NET from https://xceed.com/xceed-words-for-net/.
}

#endregion
}
}
Binary file not shown.
Binary file modified Examples/Samples/Protection/Output/AddPasswordProtection.docx
Binary file not shown.
Binary file modified Examples/Samples/Protection/Output/AddProtection.docx
Binary file not shown.
Binary file modified Examples/Samples/Section/Output/InsertSections.docx
Binary file not shown.
Binary file modified Examples/Samples/Table/Output/ColumnsWidth.docx
Binary file not shown.
Binary file modified Examples/Samples/Table/Output/CreateTableFromTemplate.docx
Binary file not shown.
Binary file modified Examples/Samples/Table/Output/InsertRowAndImageTable.docx
Binary file not shown.
Binary file modified Examples/Samples/Table/Output/MergeCells.docx
Binary file not shown.
Binary file modified Examples/Samples/Table/Output/TextDirectionTable.docx
Binary file not shown.
Binary file not shown.
Binary file not shown.
2 changes: 2 additions & 0 deletions Examples/Xceed.Words.NET.Examples.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@
<Compile Include="Samples\Miscellaneous\MiscellaneousSample.cs" />
<Compile Include="Samples\Paragraph\ParagraphSample.cs" />
<Compile Include="Samples\Parallel\ParallelSample.cs" />
<Compile Include="Samples\Pdf\PdfSample.cs" />
<Compile Include="Samples\Protection\ProtectionSample.cs" />
<Compile Include="Samples\Section\SectionSample.cs" />
<Compile Include="Samples\TableOfContent\TableOfContentSample.cs" />
Expand All @@ -78,6 +79,7 @@
<None Include="Samples\Parallel\Resources\Doc1.docx" />
<None Include="Samples\Parallel\Resources\Doc2.docx" />
<None Include="Samples\Parallel\Resources\Doc3.docx" />
<None Include="Samples\Pdf\Resources\DocumentToConvert.docx" />
<None Include="Samples\Table\Resources\DocumentWithTemplateTable.docx" />
</ItemGroup>
<ItemGroup>
Expand Down
3 changes: 0 additions & 3 deletions Examples/bin/Debug/Examples.vshost.exe.config

This file was deleted.

11 changes: 0 additions & 11 deletions Examples/bin/Debug/Examples.vshost.exe.manifest

This file was deleted.

Loading

0 comments on commit 675a7d6

Please sign in to comment.