@@ -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+ 
8587using Syncfusion.Pdf.Parsing;
8688
8789//Create the values.
@@ -95,10 +97,13 @@ loadedDocument.SplitByRanges(destinationFilePattern, values);
9597//close the document
9698loadedDocument.Close(true);
9799
100+ {% endraw %}
98101{% endhighlight %}
99102
100103{% highlight c# tabtitle="C# [ Windows-specific] " %}
101104
105+ {% raw %}
106+ 
102107using Syncfusion.Pdf.Parsing;
103108
104109//Create the values.
@@ -112,9 +117,11 @@ loadedDocument.SplitByRanges(destinationFilePattern, values);
112117//close the document
113118loadedDocument.Close(true);
114119
120+ {% endraw %}
115121{% endhighlight %}
116122
117123{% highlight vb.net tabtitle="VB.NET [ Windows-specific] " %}
124+ {% raw %}
118125
119126Imports Syncfusion.Pdf.Parsing
120127
@@ -128,7 +135,7 @@ Const destinationFilePattern As String = "Output" + "{0}.pdf"
128135loadedDocument.SplitByRanges(destinationFilePattern, values)
129136'Close the document.
130137loadedDocument.Close(True)
131- 
138+ {% endraw %} 
132139{% endhighlight %}
133140
134141{% endtabs %}  
@@ -313,6 +320,7 @@ The Syncfusion<sup>®</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 %}
316324using Syncfusion.Pdf;
317325using Syncfusion.Pdf.Parsing;
318326
@@ -331,9 +339,11 @@ loadedDocument.SplitByRanges(destinationFilePattern, values, splitOptions);
331339//Close the document.
332340loadedDocument.Close(true);
333341
342+ {% endraw %}
334343{% endhighlight %}
335344
336345{% highlight c# tabtitle="C# [ Windows-specific] " %}
346+ {% raw %}
337347
338348using Syncfusion.Pdf;
339349using Syncfusion.Pdf.Parsing;
@@ -353,9 +363,11 @@ loadedDocument.SplitByRanges(destinationFilePattern, values, splitOptions);
353363//Close the document.
354364loadedDocument.Close(true);
355365
366+ {% endraw %}
356367{% endhighlight %}
357368
358369{% highlight vb.net tabtitle="VB.NET [ Windows-specific] " %}
370+ {% raw %}
359371
360372Imports Syncfusion.Pdf
361373Imports Syncfusion.Pdf.Parsing
@@ -375,7 +387,7 @@ loadedDocument.SplitByRanges(destinationFilePattern, values, splitOptions)
375387
376388'Close the document.
377389loadedDocument.Close(True)
378- 
390+ {% endraw %} 
379391{% endhighlight %}
380392
381393{% endtabs %}
@@ -390,7 +402,7 @@ The Syncfusion<sup>®</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 %} 
394406using Syncfusion.Pdf;
395407using Syncfusion.Pdf.Parsing;
396408
@@ -409,11 +421,11 @@ loadedDocument.SplitByRanges(destinationFilePattern, values, splitOptions);
409421
410422//Close the document.
411423loadedDocument.Close(true);
412- 
424+ {% endraw %} 
413425{% endhighlight %}
414426
415427{% highlight c# tabtitle="C# [ Windows-specific] " %}
416- 
428+ {% raw %} 
417429using Syncfusion.Pdf;
418430using Syncfusion.Pdf.Parsing;
419431
@@ -432,11 +444,11 @@ loadedDocument.SplitByRanges(destinationFilePattern, values, splitOptions);
432444
433445//Close the document.
434446loadedDocument.Close(true);
435- 
447+ {% endraw %} 
436448{% endhighlight %}
437449
438450{% highlight vb.net tabtitle="VB.NET [ Windows-specific] " %}
439- 
451+ {% raw %} 
440452Imports Syncfusion.Pdf
441453Imports Syncfusion.Pdf.Parsing
442454
@@ -455,7 +467,7 @@ loadedDocument.SplitByRanges(destinationFilePattern, values, splitOptions)
455467
456468'Close the document.
457469loadedDocument.Close(True)
458- 
470+ {% endraw %} 
459471{% endhighlight %}
460472
461473{% endtabs %}
0 commit comments