Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Created April 24, 2017 15:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bjoerntx/50665b2e28146c5f9472d83685bbd752 to your computer and use it in GitHub Desktop.
Save bjoerntx/50665b2e28146c5f9472d83685bbd752 to your computer and use it in GitHub Desktop.
@using TXTextControl.Web.MVC.DocumentViewer
@{
ViewBag.Title = "Index";
}
<h2>Index</h2>
@Html.TXTextControl().DocumentViewer(settings =>
{
settings.DocumentPath = Server.MapPath("~/App_Data/Demo.rtf");
settings.Dock = DocumentViewerSettings.DockStyle.Window;
settings.IsSelectionActivated = true;
settings.ShowThumbnailPane = true;
}).Render()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment