Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Created March 13, 2017 15:04
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/01e0f8366c871f307f636984955f5c73 to your computer and use it in GitHub Desktop.
Save bjoerntx/01e0f8366c871f307f636984955f5c73 to your computer and use it in GitHub Desktop.
// click handler for the "Bold" button
$("#bold").click(function () {
// send command to enable/disable bold for current selection
if ($("#bold").prop("checked"))
TXTextControl.sendCommand(TXTextControl.Command.InputFormat,
TXTextControl.InputFormatProperty.Bold, 1);
else
TXTextControl.sendCommand(TXTextControl.Command.InputFormat,
TXTextControl.InputFormatProperty.Bold, 0);
TXTextControl.focus();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment