Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Last active July 3, 2018 09:03
Show Gist options
  • Save bjoerntx/e3db2bff25400b7cf9d60262bfa014d2 to your computer and use it in GitHub Desktop.
Save bjoerntx/e3db2bff25400b7cf9d60262bfa014d2 to your computer and use it in GitHub Desktop.
@Html.TXTextControl().DocumentViewer(settings =>
{
settings.DocumentData = Convert.ToBase64String(
File.ReadAllBytes(Server.MapPath("~/App_Data/Documents/car_insurance.tx")));
settings.DocumentPath = "MyDocument.tx";
settings.Dock = DocumentViewerSettings.DockStyle.Fill;
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