This blog post contains outdated information.
The cited code snippets may be workarounds, and be part of the official API in the meantime.
Creating an Angular DocumentViewer Application
TX Text Control's document processing technologies can be also leveraged by Angular applications. This article shows how to integrate the TX Text Control DocumentViewer into an Angular web application.

Updated Article Available
This article is outdated and there is an updated article available.
Creating your First Angular Application
This tutorial shows how to create your first Angular application using TX Text Control DocumentViewer for Angular.
Prerequisites
-
Create your free trial access token here:
-
Install Node.js® and npm, if not done before.
-
Open a Command Prompt and install the Angular CLI globally by typing in the following command:
npm install -g @angular/cli
This tutorial uses Visual Studio Code that can be downloaded for free.
Creating the Angular Project
-
Open a Command Prompt and create a new project and default app by typing in the following command:
ng new my-viewer-app
Follow the questions in the command prompt by answering them with "y" to add Angular routing and Enter to confirm CSS as your preferred stylesheet format.
-
Change into the created folder by typing in the following command:
cd my-viewer-app
-
Install the TX Text Control document editor package by typing in the following command:
ng add @txtextcontrol/tx-ng-document-viewer
-
Open this folder in Visual Studio Code by typing in the following command:
code .
-
In Visual Studio Code, open the file src -> app -> app.component.html, add the following code and save it. Replace yourtoken with your actual access token you created at the beginning of this tutorial.
<tx-document-viewer width = "800px" height = "800px" basePath = "https://backend.textcontrol.com?access-token=yourtoken" documentData = "SGVsbG8gdGhlcmU=" dock = "Window" [toolbarDocked] = "true" documentPath = "test.docx" [isSelectionActivated] = "true" [showThumbnailPane] = "true"> </tx-document-viewer>
-
Back in the command prompt, start the Angular application by typing in the following command:
ng serve --open
Your default browser is opened with your created Angular app:
Additional Steps
This tutorial uses a demo server backend for the required endpoints that is specified through the basePath attribute.
Creating Your Own Backend Server
To learn how to create your own Backend server project, please have a look at this tutorial:
Building an ASP.NET Core Backend for Angular Applications
You don't have to actually add a view to this backend server.
Attribute Documentation
All available attributes for the Angular element are documented in the NPM package overview page:
TX Text Control Document Viewer (Angular version)
Using the JavaScript API
In order to program the Angular Document Viewer, a JavaScript API is available. This API is compatible to all supported platforms including ASP.NET MVC, ASP.NET Core and Angular. The API documentation can be found here:
TXDocument
Angular
Integrate document processing, editing, sharing, collaboration, creation, electronic signatures, and PDF generation into your Angular Web applications.
Related Posts
Preview: TX Text Control DocumentViewer Becomes a Web Component
The next version of the TX Text Control DocumentViewer for ASP.NET (Core) and Angular is becoming a Web Component that can be easily used directly in JavaScript. This article gives an overview of…
Electronic Signatures: Document Audit Trails
In order to implement a legally binding document signing process, a complete document audit trail must be recorded to verify every action taken on a document. This article shows how the eSign demo…
Combine Form Fields, Merge Fields and Signature Boxes to Request Signatures
The eSign Demo shows how to use TX Text Control to implement electronic signatures into your applications. This article shows how to combine form fields, merge fields and signature boxes to…
eSign Demo: Requesting Signatures from Multiple Signers
We just published an enhanced version of our electronic signature demo that supports the request of signatures from multiple signers. This article gives an overview of the new features.
DocumentViewer 29.2 (29.0.302.500) Final Released
We are happy to announce the final release of version 29.2 of the DocumentViewer for ASP.NET and ASP.NET Core. It comes with many new annotation and form field features to deploy documents for…