Table of Contents

Getting started with TMS FNC WX Math Editor

Prerequisites

  • TMS FNC Core installed and the runtime package added to the project.
  • TMS FNC WX Pack installed.

Add the component

  1. Drop TTMSFNCWXMathEditor from the component palette onto a form.
  2. Set InsertionMode to control how the cursor inserts symbols.
  3. Assign OnResult to receive the expression output when the user confirms their entry.

Retrieve the expression

{ In an OnResult event handler: }
procedure TForm1.MathEditor1Result(Sender: TObject;
  AResult: TTMSFNCWXMathEditorResultEvent);
begin
  ShowMessage(AResult.LaTeX);
end;

Next steps

  • Guides — virtual keyboard layouts, themes, selection modes, and speech input.
  • API reference — full class reference.