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.

OfficeViewer Source Code

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"));

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

Last updated

Was this helpful?