OfficeViewer

The OfficeViewer extension control uses Microsoft’s Office 365 Live Viewers to show Word, Excel or PowerPoint documents embedded in a Wisej.NET application. You can view a file or a stream.

How to Use

The OfficeViewer extension can be added to a Wisej.NET project using NuGet Package Manager.

Sample Usage:

this.docViewer.FileName = "excel_sample.xls";
this.docViewer.FileStream = File.OpenRead(Application.MapPath("Files/excel_sample.xls"));

The document(s) to view must be available in public internet!

Find more information in our OfficeViewer example in C# or in VB.NET.

Last updated