@@ -301,7 +301,7 @@ The Syncfusion PDF library enables the splitting of PDF documents and offers the
301301{% tabs %}
302302
303303{% highlight c# tabtitle="C# [ Cross-platform] " %}
304-
304+ {% raw %}
305305//Load the existing PDF file.
306306PdfLoadedDocument loadDocument = new PdfLoadedDocument(new FileStream("Input.pdf", FileMode.Open));
307307//Subscribe to the document split event.
@@ -321,11 +321,11 @@ splitOptions.RemoveUnusedResources = true;
321321loadDocument.SplitByRanges(new int[ ,] { { 0, 5 }, { 5, 10 } }, splitOptions);
322322//Close the document.
323323loadDocument.Close(true);
324-
324+ {% endraw %}
325325{% endhighlight %}
326326
327327{% highlight c# tabtitle="C# [ Windows-specific] " %}
328-
328+ {% raw %}
329329//Create the values.
330330int[ ,] values = new int[ ,] { { 2, 5 }, { 8, 10 } };
331331//Load the PDF document.
@@ -340,11 +340,11 @@ splitOptions.RemoveUnusedResources = true;
340340loadedDocument.SplitByRanges(destinationFilePattern, values, splitOptions);
341341//Close the document.
342342loadedDocument.Close(true);
343-
343+ {% endraw %}
344344{% endhighlight %}
345345
346346{% highlight vb.net tabtitle="VB.NET [ Windows-specific] " %}
347-
347+ {% raw %}
348348'Create the values.
349349Dim values As Integer(,) = New Integer(,) {{2, 5},{8, 10}}
350350'Load the PDF document.
@@ -360,7 +360,7 @@ loadedDocument.SplitByRanges(destinationFilePattern, values, splitOptions)
360360
361361'Close the document.
362362loadedDocument.Close(True)
363-
363+ {% endraw %}
364364{% endhighlight %}
365365
366366{% endtabs %}
@@ -375,7 +375,7 @@ The Syncfusion PDF library enables the splitting of PDF documents and offers the
375375{% tabs %}
376376
377377{% highlight c# tabtitle="C# [ Cross-platform] " %}
378-
378+ {% raw %}
379379//Load an existing PDF file.
380380PdfLoadedDocument loadDocument = new PdfLoadedDocument(new FileStream("Input.pdf", FileMode.Open));
381381//Subscribe to the document split event.
@@ -396,11 +396,11 @@ loadDocument.SplitByRanges(new int[,] { { 0, 1 }, { 1, 2 } }, splitOptions);
396396
397397//Close the document.
398398loadDocument.Close(true);
399-
399+ {% endraw %}
400400{% endhighlight %}
401401
402402{% highlight c# tabtitle="C# [ Windows-specific] " %}
403-
403+ {% raw %}
404404//Create the values.
405405int[ ,] values = new int[ ,] { { 0, 1 }, { 1, 2 } };
406406//Load the PDF document.
@@ -416,11 +416,11 @@ loadedDocument.SplitByRanges(destinationFilePattern, values, splitOptions);
416416
417417//Close the document.
418418loadedDocument.Close(true);
419-
419+ {% endraw %}
420420{% endhighlight %}
421421
422422{% highlight vb.net tabtitle="VB.NET [ Windows-specific] " %}
423-
423+ {% raw %}
424424'Create the values.
425425Dim values As Integer(,) = New Integer(,) {{0, 1},{1, 2}}
426426'Load the PDF document.
@@ -436,7 +436,7 @@ loadedDocument.SplitByRanges(destinationFilePattern, values, splitOptions)
436436
437437'Close the document.
438438loadedDocument.Close(True)
439-
439+ {% endraw %}
440440{% endhighlight %}
441441
442442{% endtabs %}
0 commit comments