Skip to content

Commit 582ac55

Browse files
Merge pull request #1580 from syncfusion-content/986214-1
986214-1: Resolved the build Failures.
2 parents 126fa2c + e39a15c commit 582ac55

File tree

1 file changed

+20
-8
lines changed

1 file changed

+20
-8
lines changed

Document-Processing/PDF/PDF-Library/NET/Split-Documents.md

Lines changed: 20 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,8 @@ Refer to the following code example to split a range of pages.
8282
{% tabs %}
8383
{% highlight c# tabtitle="C# [Cross-platform]" playgroundButtonLink="https://raw.githubusercontent.com/SyncfusionExamples/PDF-Examples/master/Split%20PDFs/Split-a-Range-of-Pages/.NET/Split-a-Range-of-Pages/Program.cs" %}
8484

85+
{% raw %}
86+
8587
using Syncfusion.Pdf.Parsing;
8688

8789
//Create the values.
@@ -95,10 +97,13 @@ loadedDocument.SplitByRanges(destinationFilePattern, values);
9597
//close the document
9698
loadedDocument.Close(true);
9799

100+
{% endraw %}
98101
{% endhighlight %}
99102

100103
{% highlight c# tabtitle="C# [Windows-specific]" %}
101104

105+
{% raw %}
106+
102107
using Syncfusion.Pdf.Parsing;
103108

104109
//Create the values.
@@ -112,9 +117,11 @@ loadedDocument.SplitByRanges(destinationFilePattern, values);
112117
//close the document
113118
loadedDocument.Close(true);
114119

120+
{% endraw %}
115121
{% endhighlight %}
116122

117123
{% highlight vb.net tabtitle="VB.NET [Windows-specific]" %}
124+
{% raw %}
118125

119126
Imports Syncfusion.Pdf.Parsing
120127

@@ -128,7 +135,7 @@ Const destinationFilePattern As String = "Output" + "{0}.pdf"
128135
loadedDocument.SplitByRanges(destinationFilePattern, values)
129136
'Close the document.
130137
loadedDocument.Close(True)
131-
138+
{% endraw %}
132139
{% endhighlight %}
133140

134141
{% endtabs %}
@@ -313,6 +320,7 @@ The Syncfusion<sup>&reg;</sup> PDF library enables the splitting of PDF document
313320

314321
{% highlight c# tabtitle="C# [Cross-platform]" playgroundButtonLink="https://raw.githubusercontent.com/SyncfusionExamples/PDF-Examples/master/Split%20PDFs/Remove-Unused-Resources-when-Splitting-PDF-Documents/.NET/Remove-Unused-Resources-when-Splitting-PDF-Documents/Program.cs" %}
315322

323+
{% raw %}
316324
using Syncfusion.Pdf;
317325
using Syncfusion.Pdf.Parsing;
318326

@@ -331,9 +339,11 @@ loadedDocument.SplitByRanges(destinationFilePattern, values, splitOptions);
331339
//Close the document.
332340
loadedDocument.Close(true);
333341

342+
{% endraw %}
334343
{% endhighlight %}
335344

336345
{% highlight c# tabtitle="C# [Windows-specific]" %}
346+
{% raw %}
337347

338348
using Syncfusion.Pdf;
339349
using Syncfusion.Pdf.Parsing;
@@ -353,9 +363,11 @@ loadedDocument.SplitByRanges(destinationFilePattern, values, splitOptions);
353363
//Close the document.
354364
loadedDocument.Close(true);
355365

366+
{% endraw %}
356367
{% endhighlight %}
357368

358369
{% highlight vb.net tabtitle="VB.NET [Windows-specific]" %}
370+
{% raw %}
359371

360372
Imports Syncfusion.Pdf
361373
Imports Syncfusion.Pdf.Parsing
@@ -375,7 +387,7 @@ loadedDocument.SplitByRanges(destinationFilePattern, values, splitOptions)
375387

376388
'Close the document.
377389
loadedDocument.Close(True)
378-
390+
{% endraw %}
379391
{% endhighlight %}
380392

381393
{% endtabs %}
@@ -390,7 +402,7 @@ The Syncfusion<sup>&reg;</sup> PDF library enables the splitting of PDF document
390402
{% tabs %}
391403

392404
{% highlight c# tabtitle="C# [Cross-platform]" playgroundButtonLink="https://raw.githubusercontent.com/SyncfusionExamples/PDF-Examples/master/Split%20PDFs/Import-tagged-structure-when-splitting-PDF-documents/.NET/Import-tagged-structure-when-splitting-PDF-documents/Program.cs" %}
393-
405+
{% raw %}
394406
using Syncfusion.Pdf;
395407
using Syncfusion.Pdf.Parsing;
396408

@@ -409,11 +421,11 @@ loadedDocument.SplitByRanges(destinationFilePattern, values, splitOptions);
409421

410422
//Close the document.
411423
loadedDocument.Close(true);
412-
424+
{% endraw %}
413425
{% endhighlight %}
414426

415427
{% highlight c# tabtitle="C# [Windows-specific]" %}
416-
428+
{% raw %}
417429
using Syncfusion.Pdf;
418430
using Syncfusion.Pdf.Parsing;
419431

@@ -432,11 +444,11 @@ loadedDocument.SplitByRanges(destinationFilePattern, values, splitOptions);
432444

433445
//Close the document.
434446
loadedDocument.Close(true);
435-
447+
{% endraw %}
436448
{% endhighlight %}
437449

438450
{% highlight vb.net tabtitle="VB.NET [Windows-specific]" %}
439-
451+
{% raw %}
440452
Imports Syncfusion.Pdf
441453
Imports Syncfusion.Pdf.Parsing
442454

@@ -455,7 +467,7 @@ loadedDocument.SplitByRanges(destinationFilePattern, values, splitOptions)
455467

456468
'Close the document.
457469
loadedDocument.Close(True)
458-
470+
{% endraw %}
459471
{% endhighlight %}
460472

461473
{% endtabs %}

0 commit comments

Comments
 (0)