1

I am currently working with the Word JavaScript API, and I can enable Track Changes for the following document

 await Word.run(async (context) => {
      const document = context.document;
      document.load("changeTrackingMode");
      await context.sync();
      document.changeTrackingMode = Word.ChangeTrackingMode.trackAll;
    });

. However, when I enable it, it can still be turned off directly in Word. Is there a way for me to lock it, similar to Lock Tracking?

I cannot find any documentation regarding Lock Tracking.

0

0

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.