Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Created July 28, 2022 12:00
Show Gist options
  • Save bjoerntx/a52689269c3f69f5aa5c55a3801139de to your computer and use it in GitHub Desktop.
Save bjoerntx/a52689269c3f69f5aa5c55a3801139de to your computer and use it in GitHub Desktop.
using (TXTextControl.ServerTextControl tx = new TXTextControl.ServerTextControl()) {
tx.Create();
tx.Load(data, TXTextControl.BinaryStreamType.InternalUnicodeFormat);
foreach(TXTextControl.TrackedChange change in tx.TrackedChanges) {
Console.WriteLine("Text: {0}, User: {1}", change.Text, change.UserName);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment