Hi,
I want to create document with editable range. When I create document from your code (https://reference.aspose.com/words/net/aspose.words/documentbuilder/methods/starteditablerange) I have document with yellow field. In more complicated code I have document with pink field. Is any option to change color in editable range?
When I try to found solution I saw document cannot be correctly created when I call Save before EndEditableRange. See the sample program:
var doc = new Document();
doc.Protect(ProtectionType.ReadOnly, "MyPassword");
var builder = new DocumentBuilder(doc);
builder.StartEditableRange();
builder.Writeln("This paragraph can be edited.");
doc.Save("DocumentBeforeEnd.docx");
builder.EndEditableRange();
doc.Save("DocumentAfterEnd.docx");
Document DocumentAfterEnd should be created without editable range?
Thanks,
Monika