Hi @awais.hafeez,
THANKS for your quick response.
I have particular requirement where I’m using builder.startEditableRange() & builder.endEditableRange() for editable range and protecting my documents using document.protect().
which is giving the mentioned issue:-
WORDSNET-20207 : Provide option to disable default Yellow color of content of Editable Ranges
and **for time being we are ok with that.
Then we unproctect that document using document.unprotect(),whole document get editable which is right functionality but the same yellow highlighted color or yellow background is converted to red color . I have even tried setBackgroundPatternColor to all my docuemnt paragragh to
new Color(0, 0, 0, 0) or setHighlightColor(new java.awt.Color(0, true)); but still red highlighted color is not removed.
Can you please provide any solution or workaround.
PS :- we don’t want to use section break and then make particular section editable using section.setProtectedForForms(false); at this stage because we use this section break and make particular section editable logic in further lifecycle of this document in our project.