-
- | Command Name |
- Arguments |
- Description |
-
-
- | NavigateBackward |
-
- None
- |
-
- Goes back to the previously rendered report from history.
- |
-
-
- | NavigateForward |
-
- None
- |
-
- Goes forward to the previously rendered report from history.
- |
-
-
- | StopRendering |
-
- None
- |
-
- Stop the rendering of the current report at the first possible moment.
- |
-
-
- | Refresh |
-
- None
- |
-
- Refreshes the report viewer.
- |
-
-
- | Print |
-
- None
- |
-
- Triggers the report viewer printing operation.
- |
-
-
- | SendMail |
-
- None
- |
-
- Triggers the Email-sending functionality if implemented.
- |
-
-
- | Search |
-
- None
- |
-
- Shows or hides the search dialog.
- |
-
-
- | AiPrompt |
-
- None
- |
-
- Shows or hides the AI prompt dialog.
- |
-
-
- | SetAuthenticationToken |
-
- The token string
- |
-
- Sets the token that will be used in the Authorization header of the requests made by the viewer.
- |
-
-
- | Export |
-
- The rendering extension name, e.g. "PDF"
- |
-
- Exports the report, using the respective rendering extension name.
- |
-
-
- | FirstPage |
-
- None
- |
-
- Goes to the first page of the report.
- |
-
-
- | LastPage |
-
- None
- |
-
- Goes to the last page of the report
- |
-
-
- | NextPage |
-
- None
- |
-
- Goes to the next page of the report.
- |
-
-
- | PreviousPage |
-
- None
- |
-
- Goes to the previous page of the report.
- |
-
-
- | ZoomIn |
-
- None
- |
-
- Zoom in the report.
- |
-
-
- | ZoomOut |
-
- None
- |
-
- Zoom out the report.
- |
-
-
- | TogglePrintPreview |
-
- None
- |
-
- Toggles between Print Preview and Interactive view modes - Interactive vs Print Layout
- |
-
-
- | ToggleScaleMode |
-
- None
- |
-
- Changes the scale mode of the report.
- |
-
-
- | ToggleDocumentMap |
-
- None
- |
-
- Shows or hides the document map.
- |
-
-
- | ToggleParametersArea |
-
- None
- |
-
- Shows or hides the parameters area.
- |
-
-
-
-
-## See Also
-
-* [Native Blazor Report Viewer Options]({%slug telerikreporting/embedding-reports/display-reports-in-applications/web-application/native-blazor-report-viewer/api-reference/options%})
+reportingArea: NativeBlazor
+position: 1
+---
+
+
+
+# Native Blazor Report Viewer Commands Overview
+
+The Native Blazor Report Viewer exposes **commands** that allow it to control its behavior from application code.
+
+## Executing A Command
+
+To execute a command, it is required to first get a reference to the report viewer object using the `@ref` attribute. Then, the referenced property/field can be used to invoke the `ExecuteCommand` method. The `ExecuteCommand` method has the following signature:
+
+````C#
+void ExecuteCommand(string commandName, string commandValue(optional))
+````
+
+All commands, except for the `Export` command, require a single argument for this method, which is the `commandName`. The `commandValue` is used only by the `Export` command to specify the exporting format.
+
+For example, the `Refresh` and `Export` commands of the current report can be triggered like this:
+
+````C#
+