Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Last active September 28, 2020 13:35
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/0588a256c41121f7c1003a2ce402781e to your computer and use it in GitHub Desktop.
Save bjoerntx/0588a256c41121f7c1003a2ce402781e to your computer and use it in GitHub Desktop.
@Html.TXTextControl().DocumentViewer(settings =>
{
settings.DocumentPath = AppDomain.CurrentDomain.GetData("DataDirectory").ToString() +
"\\test.pdf";
settings.UserNames = new string[] { "Klaas Klaasen" };
settings.Dock = DocumentViewerSettings.DockStyle.Window;
settings.ToolbarDocked = true;
settings.ShowThumbnailPane = true;
}).Render()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment