Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion wpf/Control-Dependencies.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ documentation: ug

# Control Dependencies in Syncfusion<sup>&reg;</sup>'s WPF Controls

This section contains a list of assembly or NuGet references required to use any control in the application. You can refer to the [installation and deployment section](https://help.syncfusion.com/wpf/installation-and-upgrade/system-requirements) to know about assembly installation location and [NuGet packages](https://help.syncfusion.com/wpf/visual-studio-integration/nuget-packages) section to know how to add NuGet reference.
This section contains a list of assembly or NuGet references required to use any control in the application. You can refer to the [installation and deployment section](https://help.syncfusion.com/wpf/system-requirements) to know about assembly installation location and [NuGet packages](https://help.syncfusion.com/wpf/visual-studio-integration/nuget-packages) section to know how to add NuGet reference.

You can refer to the [syncfusion controls section](https://help.syncfusion.com/wpf/add-syncfusion-controls) to learn how to add syncfusion<sup>&reg;</sup> control.

Expand Down
18 changes: 9 additions & 9 deletions wpf/DataGrid/Export-To-Excel.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ workBook.SaveAs("Sample.xlsx");
{% endhighlight %}
{% endtabs %}

N> SfDataGrid exports data to excel by using [XlsIO](https://help.syncfusion.com/file-formats/xlsio/overview). You can refer [XlsIO documentation](https://help.syncfusion.com/file-formats/xlsio/working-with-excel-worksheet) for manipulating exported work sheets.
N> SfDataGrid exports data to excel by using [XlsIO](https://help.syncfusion.com/document-processing/excel/excel-library/net/overview). You can refer [XlsIO documentation](https://help.syncfusion.com/document-processing/excel/excel-library/net/working-with-excel-worksheet) for manipulating exported work sheets.

## Excel exporting options

Expand Down Expand Up @@ -188,7 +188,7 @@ workBook.SaveAs(fileStream);
{% endhighlight %}
{% endtabs %}

You can refer [XlsIO documentation](https://help.syncfusion.com/file-formats/xlsio/faq).
You can refer [XlsIO documentation](https://help.syncfusion.com/document-processing/excel/excel-library/net/faq).

### Save using File dialog

Expand Down Expand Up @@ -315,7 +315,7 @@ workBook.SaveAsHtml("Sample.html", HtmlSaveOptions.Default);
{% endhighlight %}
{% endtabs %}

It is also possible to save worksheet as HTML by using [SaveAsHtml](https://help.syncfusion.com/cr/file-formats/Syncfusion.XlsIO.IWorkbook.html#Syncfusion_XlsIO_IWorkbook_SaveAsHtml_System_IO_Stream_) method. You can refer [XlsIO documentation](https://help.syncfusion.com/file-formats/xlsio/working-with-excel-worksheet#save-worksheet-as-html) for this.
It is also possible to save worksheet as HTML by using [SaveAsHtml](https://help.syncfusion.com/cr/file-formats/Syncfusion.XlsIO.IWorkbook.html#Syncfusion_XlsIO_IWorkbook_SaveAsHtml_System_IO_Stream_) method. You can refer [XlsIO documentation](https://help.syncfusion.com/document-processing/excel/excel-library/net/working-with-excel-worksheet#save-worksheet-as-html) for this.

## Export DataGrid to Mail

Expand Down Expand Up @@ -398,11 +398,11 @@ workBook.SaveAs("Sample.csv", ",");
{% endhighlight %}
{% endtabs %}

Similarly, you can save exported worksheet also to CSV. You can refer [XlsIO documentation.](https://help.syncfusion.com/file-formats/xlsio/working-with-excel-worksheet#save-worksheet-as-csv)
Similarly, you can save exported worksheet also to CSV. You can refer [XlsIO documentation.](https://help.syncfusion.com/document-processing/excel/excel-library/net/working-with-excel-worksheet#save-worksheet-as-csv)

## Row Height and Column Width customization

After exporting data to excel, you can set different row height and column width for the columns based on your requirement. You can refer [here](https://help.syncfusion.com/file-formats/xlsio/worksheet-rows-and-columns-manipulation#adjust-row-height-and-column-width) for more information.
After exporting data to excel, you can set different row height and column width for the columns based on your requirement. You can refer [here](https://help.syncfusion.com/document-processing/excel/excel-library/net/worksheet-rows-and-columns-manipulation#adjust-row-height-and-column-width) for more information.

{% tabs %}
{% highlight c# %}
Expand Down Expand Up @@ -559,7 +559,7 @@ Here, `OrderID` column cells are customized while exporting.

## Customize exported workbook and worksheet

SfDataGrid exports to excel by using [XlsIO](https://help.syncfusion.com/file-formats/xlsio/overview). You can refer [XlsIO documentation](https://help.syncfusion.com/file-formats/xlsio/working-with-excel-worksheet) for manipulating workbook and sheet after exporting.
SfDataGrid exports to excel by using [XlsIO](https://help.syncfusion.com/file-formats/xlsio/overview). You can refer [XlsIO documentation](https://help.syncfusion.com/document-processing/excel/excel-library/net/working-with-excel-worksheet) for manipulating workbook and sheet after exporting.

### Workbook
SfDataGrid provides option to return [ExcelEngine](https://help.syncfusion.com/cr/file-formats/Syncfusion.XlsIO.ExcelEngine.html) from that you can get exported workbook. This allows you to protect, encrypt and add worksheet before saving.
Expand Down Expand Up @@ -590,7 +590,7 @@ workBook.SaveAs("Sample.xlsx");
{% endhighlight %}
{% endtabs %}

Before saving workbook, you need to set the specific excel version by using [IWorkbook.Version](https://help.syncfusion.com/cr/wpf/Syncfusion.XlsIO.IWorkbook.html#Syncfusion_XlsIO_IWorkbook_Version) property. Here, you can directly manipulate the data in the worksheet. You can refer [here](https://help.syncfusion.com/file-formats/xlsio/worksheet-rows-and-columns-manipulation) for more information.
Before saving workbook, you need to set the specific excel version by using [IWorkbook.Version](https://help.syncfusion.com/cr/wpf/Syncfusion.XlsIO.IWorkbook.html#Syncfusion_XlsIO_IWorkbook_Version) property. Here, you can directly manipulate the data in the worksheet. You can refer [here](https://help.syncfusion.com/document-processing/excel/excel-library/net/worksheet-rows-and-columns-manipulation) for more information.

#### Setting borders

Expand Down Expand Up @@ -757,7 +757,7 @@ You can perform cell level customization such as row-level styling, formatting p
In the below code snippet, NumberFormat for `Unit Price` column is changed in the exported sheet after exporting without using `CellsExportingEventHandler`.

Reference:
[https://help.syncfusion.com/file-formats/xlsio/working-with-cell-or-range-formatting](https://help.syncfusion.com/file-formats/xlsio/working-with-cell-or-range-formatting)
[https://help.syncfusion.com/document-processing/excel/excel-library/net/working-with-cell-or-range-formatting](https://help.syncfusion.com/document-processing/excel/excel-library/net/working-with-cell-or-range-formatting)

{% tabs %}
{% highlight c# %}
Expand All @@ -778,7 +778,7 @@ workBook.ActiveSheet.Columns[4].NumberFormat = "0.0";
In the below code snippet, the background color of rows in excel is changed based on row index using conditional formatting for better performance.

Reference:
[https://help.syncfusion.com/file-formats/xlsio/working-with-conditional-formatting](https://help.syncfusion.com/file-formats/xlsio/working-with-conditional-formatting)
[https://help.syncfusion.com/document-processing/excel/excel-library/net/working-with-conditional-formatting](https://help.syncfusion.com/document-processing/excel/excel-library/net/working-with-conditional-formatting)

{% tabs %}
{% highlight c# %}
Expand Down
6 changes: 3 additions & 3 deletions wpf/DataGrid/Export-To-PDF.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ document.Save("Sample.pdf");
{% endhighlight %}
{% endtabs %}

N> SfDataGrid exports data to PDF file by using [Essential PDF](https://help.syncfusion.com/file-formats/pdf/overview). You can refer [PDF documentation](https://help.syncfusion.com/file-formats/pdf/working-with-document) for manipulating.
N> SfDataGrid exports data to PDF file by using [Essential PDF](https://help.syncfusion.com/document-processing/pdf/pdf-library/net/overview). You can refer [PDF documentation](https://help.syncfusion.com/document-processing/pdf/pdf-library/net/working-with-document) for manipulating.

## PDF exporting options

Expand Down Expand Up @@ -289,7 +289,7 @@ document.Save("Sample.pdf");
{% endhighlight %}
{% endtabs %}

You can refer [PDF documentation](https://help.syncfusion.com/file-formats/pdf/open-and-save-pdf-file-in-c-sharp-vb-net#saving-a-pdf-document-to-file-system).
You can refer [PDF documentation](https://help.syncfusion.com/document-processing/pdf/pdf-library/net/open-and-save-pdf-file-in-c-sharp-vb-net#saving-a-pdf-document-to-file-system).

### Save as stream

Expand All @@ -304,7 +304,7 @@ fileStream.Close();
{% endhighlight %}
{% endtabs %}

You can refer [PDF documentation](https://help.syncfusion.com/file-formats/pdf/open-and-save-pdf-file-in-c-sharp-vb-net#saving-a-pdf-document-to-stream).
You can refer [PDF documentation](https://help.syncfusion.com/document-processing/pdf/pdf-library/net/open-and-save-pdf-file-in-c-sharp-vb-net#saving-a-pdf-document-to-stream).

### Save using File dialog

Expand Down
2 changes: 1 addition & 1 deletion wpf/Welcome-to-Syncfusion-Essential-WPF.md
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ N> The name of the Visual Studio Toolbox entry provided when the common control
</tr>
<tr>
<td>
<a href="https://help.syncfusion.com/wpf/richtextbox/getting-started" >RichTextBox</a><br/>
<a href="https://help.syncfusion.com/wpf/classic/richtextboxadv/getting-started" >RichTextBox</a><br/>
</td>
</tr>
<tr>
Expand Down