Skip to content

Commit 0da79cd

Browse files
Merge pull request #3297 from syncfusion-content/1032245-stagingFailures
1032245: Resolved Staging Failures
2 parents 6b722f6 + ac8ab6e commit 0da79cd

1 file changed

Lines changed: 8 additions & 4 deletions

File tree

Document-Processing/PDF/PDF-Viewer/blazor/organize-pages/import-pages.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)