File tree Expand file tree Collapse file tree
Document-Processing/PDF/PDF-Viewer/blazor/organize-pages Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -51,7 +51,8 @@ You can also import pages from another PDF programmatically using the `InsertPag
5151
5252### Import pages from byte array
5353
54- ``` chstml
54+ {% tabs %}
55+ {% highlight razor %}
5556@using Syncfusion.Blazor.Buttons
5657
5758<SfButton OnClick =" ImportMethod " >Import</SfButton >
@@ -68,11 +69,13 @@ You can also import pages from another PDF programmatically using the `InsertPag
6869 await Viewer?.InsertPagesAsync(2, byteArray, null);
6970 }
7071}
71- ```
72+ {% endhighlight %}
73+ {% endtabs %}
7274
7375### Import pages from stream
7476
75- ``` cshtml
77+ {% tabs %}
78+ {% highlight razor %}
7679@using Syncfusion.Blazor.Buttons
7780
7881<SfButton OnClick =" ImportMethodStream " >Import Stream</SfButton >
@@ -90,7 +93,8 @@ You can also import pages from another PDF programmatically using the `InsertPag
9093 await Viewer?.InsertPagesAsync(2, stream, null);
9194 }
9295}
93- ```
96+ {% endhighlight %}
97+ {% endtabs %}
9498
9599## Troubleshooting
96100
You can’t perform that action at this time.
0 commit comments