Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Created July 28, 2022 12:13
Show Gist options
  • Save bjoerntx/eb4c45c0a8a8672910ae36b14dbdcf6b to your computer and use it in GitHub Desktop.
Save bjoerntx/eb4c45c0a8a8672910ae36b14dbdcf6b to your computer and use it in GitHub Desktop.
using (TXTextControl.ServerVisualisation.TextViewGenerator tx =
new TXTextControl.ServerVisualisation.TextViewGenerator()) {
tx.Create();
tx.Selection.Text = "1234567890";
tx.IsTrackChangesEnabled = true;
tx.UserNames = new string[] {"qa@textcontrol.com" };
tx.Select(2, 3);
tx.Selection.Text = "New Text";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment