Created
November 8, 2024 14:05
-
-
Save bjoerntx/e9ce55ca737885da293f992ad1a37cc8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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