> For the complete documentation index, see [llms.txt](https://docs.apryse.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.apryse.com/web/get-started/samples/webviewer-powerapps-component.md).

# Integrate WebViewer into a Power Apps Component

This sample shows how to integrate WebViewer into a Power Apps component project.

This sample shows how to integrate Apryse WebViewer into a Powerapps component project.

WebViewer provides a slick out-of-the-box responsive UI that enables you to view, annotate and manipulate PDFs and other document types inside any web project.

Click the button below to view the full project in GitHub.

{% tabs %}
{% tab title="TypeScript" %}
{% code title="index.ts" lineNumbers="true" %}

```ts
import { IInputs, IOutputs } from "./generated/ManifestTypes";
import WebViewer from '@pdftron/webviewer'

export class WebViewerControl implements ComponentFramework.StandardControl<IInputs, IOutputs> {

    private _notifyOutputChanged: () => void;
    private pdfURI = "";
    private iframeWindow: Window;
    private _context: ComponentFramework.Context<IInputs>;
    private _container: HTMLDivElement;

    constructor() {
        // Empty constructor
    }

    /**
     * Used to initialize the control instance. Controls can kick off remote server calls and other initialization actions here.
     * Data-set values are not initialized here, use updateView.
     * @param context The entire property bag available to control via Context Object; It contains values as set up by the customizer mapped to property names defined in the manifest, as well as utility functions.
     * @param notifyOutputChanged A callback method to alert the framework that the control has new outputs ready to be retrieved asynchronously.
     * @param state A piece of data that persists in one session for a single user. Can be set at any point in a controls life cycle by calling 'setControlState' in the Mode interface.
     * @param container If a control is marked control-type='standard', it will receive an empty div element within which it can render its content.
     */
    public init(context: ComponentFramework.Context<IInputs>, notifyOutputChanged: () => void, state: ComponentFramework.Dictionary, container: HTMLDivElement): void {
        // Add control initialization code
        this._notifyOutputChanged = notifyOutputChanged;
        this._context = context;

        const viewerElement = document.createElement("div");
        viewerElement.style.height = context.parameters.viewerheight.raw + "px";
        viewerElement.style.width = context.parameters.viewerwidth.raw + "px";
        this._container = viewerElement;
        container.appendChild(this._container);

        viewerElement.addEventListener('ready', () => {
            this.iframeWindow = viewerElement.querySelector('iframe')!.contentWindow!;
        })

        WebViewer.Iframe({
            path: 'http://localhost:3000/lib',
            config: 'http://localhost:3000/config.js',
            initialDoc: context.parameters.doc.raw!,
        }, viewerElement)

        window.addEventListener("message", (event: MessageEvent) => {
            if (event.isTrusted && typeof event.data === 'object') {
                switch (event.data.type) {
                    case 'SAVE_DOCUMENT':
                        this.handleDocSave(event.data.payload.file);
                        break;
                    default:
                        break;
                }
            }
        }, false);
    }

    private handleDocOpen(docUrl: string): void {
        const payload = {
            file: docUrl
        };
        this.iframeWindow.postMessage({ type: 'OPEN_DOCUMENT', payload }, '*');
    }

    private handleDocSave(docUrl: string): void {
        this.pdfURI = docUrl;
        this._notifyOutputChanged()
    }

    /**
     * Called when any value in the property bag has changed. This includes field values, data-sets, global values such as container height and width, offline status, control metadata values such as label, visible, etc.
     * @param context The entire property bag available to control via Context Object; It contains values as set up by the customizer mapped to names defined in the manifest, as well as utility functions
     */
    public updateView(context: ComponentFramework.Context<IInputs>): void {
        this._container.style.height = context.parameters.viewerheight.raw + "px";
        this._container.style.width = context.parameters.viewerwidth.raw + "px";
        if (context.updatedProperties.indexOf("doc") > -1) {
            this._context = context;
            this.handleDocOpen(context.parameters.doc.raw!)
        }
    }

    /**
     * It is called by the framework prior to a control receiving new data.
     * @returns an object based on nomenclature defined in manifest, expecting object[s] for property marked as “bound” or “output”
     */
    public getOutputs(): IOutputs {
        const result = {
            pdfdoc: this.pdfURI
        };
        return result;
    }

    /**
     * Called when the control is to be removed from the DOM tree. Controls should use this call for cleanup.
     * i.e. cancelling any pending remote calls, removing listeners, etc.
     */
    public destroy(): void {
        // Add code to cleanup control if necessary
    }
}

```

{% endcode %}
{% endtab %}
{% endtabs %}

[View the full sample on GitHub](https://github.com/ApryseSDK/webviewer-samples/tree/main/webviewer-powerapps-component)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.apryse.com/web/get-started/samples/webviewer-powerapps-component.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
