Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Created November 8, 2024 14:05
Show Gist options
  • Save bjoerntx/e9ce55ca737885da293f992ad1a37cc8 to your computer and use it in GitHub Desktop.
Save bjoerntx/e9ce55ca737885da293f992ad1a37cc8 to your computer and use it in GitHub Desktop.
@using TXTextControl.Web.MVC
@Html.TXTextControl().TextControl(settings =>
{
settings.Dock = TXTextControl.Web.DockStyle.Fill;
}).LoadDataFromJson(File.ReadAllText("data.json")).Render()
@{
var settings = new TXTextControl.Web.MVC.DocumentViewer.DocumentViewerSettings();
settings.Dock = TXTextControl.Web.MVC.DocumentViewer.DocumentViewerSettings.DockStyle.Fill;
settings.ShowThumbnailPane = false;
var viewer = new TXTextControl.Web.MVC.DocumentViewer.DocumentViewer(settings);
@viewer.Render()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment