Skip to content

Commit 57566a5

Browse files
committed
Issue resolved
1 parent d886ca4 commit 57566a5

3 files changed

Lines changed: 10 additions & 9 deletions

File tree

Document-Processing/Excel/Excel-Library/NET/Cells-Manipulation/Sorting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ A range of cells in Excel worksheet can be sorted based on data in one or more c
1414
* Font Color
1515
* Cell Color
1616

17-
N> Currently XlsIO dont support sorting based on cell icon, parsing and serialization of its sorting details.
17+
N> Currently XlsIO don't support sorting based on cell icon, parsing and serialization of its sorting details.
1818

1919
## Cell Values
2020

Document-Processing/Excel/Excel-Library/NET/Working-with-Excel-Tables.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -507,7 +507,7 @@ A complete working example to apply custom table style in C# is present on [this
507507

508508
The following screenshot represents generated Excel file with custom table styles in XlsIO.
509509

510-
![custom table style](Working-with-Excel-Tables_images/Working-with-Tables_img1.jpg)
510+
![custom table style](Working-with-pivot-tables_images/Working-with-Tables_img1.jpg)
511511

512512
N> The [TableStyles](https://help.syncfusion.com/cr/document-processing/Syncfusion.XlsIO.ITableStyles.html) API only retrieves custom table styles.
513513

@@ -662,7 +662,7 @@ End Using
662662

663663
A complete working example to insert total row in C# is present on [this GitHub page](https://github.com/SyncfusionExamples/XlsIO-Examples/tree/master/Create%20and%20Edit%20Table/Add%20Total%20Row/.NET/Add%20Total%20Row).
664664

665-
## Create a table from external connectionÂ
665+
## Create a table from external connection
666666

667667
External connection support allows you to work with the most recent data right in the workbook. After the data is imported, only refresh operations are performed to retrieve the updated data.
668668

Document-Processing/Excel/Excel-Library/NET/Working-with-Pictures.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ documentation: UG
88
# Working with Pictures
99

1010
XlsIO supports inserting pictures into a worksheet. Refer to the following code snippet.
11+
{% tabs %}
1112
{% highlight c# tabtitle="C# [Cross-platform]" playgroundButtonLink="https://raw.githubusercontent.com/SyncfusionExamples/XlsIO-Examples/master/Pictures%20in%20Excel/Add%20Picture/.NET/Add%20Picture/Add%20Picture/Program.cs,180" %}
1213
using (ExcelEngine excelEngine = new ExcelEngine())
1314
{
@@ -478,10 +479,10 @@ Using excelEngine As ExcelEngine = New ExcelEngine()
478479
Dim workbook As IWorkbook = application.Workbooks.Create(1)
479480
Dim worksheet As IWorksheet = workbook.Worksheets(0)
480481

481-
'Add image from the specified url at the specified location in the worksheet
482+
'Add image from the specified url at the specified location in the worksheet
482483
worksheet.Pictures.AddPictureAsLink(1, 1, 5, 7, "https://cdn.syncfusion.com/content/images/company-logos/Syncfusion_Logo_Image.png")
483484

484-
'Save workbook
485+
'Save workbook
485486
workbook.SaveAs("ExternalImage.xlsx")
486487
End Using
487488
{% endhighlight %}
@@ -530,7 +531,7 @@ using (ExcelEngine excelEngine = new ExcelEngine())
530531
FileStream svgStream = new FileStream("Sample.svg", FileMode.Open);
531532
FileStream pngStream = new FileStream("Sample.png", FileMode.Open);
532533

533-
//Add svg image with given svg and png streams
534+
//Add svg image with given svg and png streams
534535
worksheet.Pictures.AddPicture(1, 1, svgStream, pngStream);
535536

536537
//Save workbook
@@ -548,10 +549,10 @@ Using excelEngine As ExcelEngine = New ExcelEngine()
548549
Dim svgStream As New FileStream("Sample.svg", FileMode.Open)
549550
Dim pngStream As New FileStream("Sample.png", FileMode.Open)
550551

551-
'Add svg image with given svg and png streams
552+
'Add svg image with given svg and png streams
552553
worksheet.Pictures.AddPicture(1, 1, svgStream, pngStream)
553554

554-
'Save workbook
555+
'Save workbook
555556
workbook.SaveAs("Svg.xlsx")
556557
End Using
557558
{% endhighlight %}
@@ -618,7 +619,7 @@ Using excelEngine As ExcelEngine = New ExcelEngine()
618619

619620
shape.PlaceInCell = True
620621

621-
'Save workbook
622+
'Save workbook
622623
workbook.SaveAs("PlaceInCellPicture.xlsx")
623624
End Using
624625
{% endhighlight %}

0 commit comments

Comments
 (0)