FieldIndexFormat

FieldOptions.FieldIndexFormat property

Получает или устанавливаетFieldIndexFormat который представляет форматирование дляFieldIndex поля в документе.

public FieldIndexFormat FieldIndexFormat { get; set; }

Примеры

Показывает, как форматировать поля FieldIndex.

Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.Write("A");
builder.InsertBreak(BreakType.LineBreak);
builder.InsertField("XE \"A\"");
builder.Write("B");

builder.InsertField(" INDEX \\e \" · \" \\h \"A\" \\c \"2\" \\z \"1033\"", null);

doc.FieldOptions.FieldIndexFormat = FieldIndexFormat.Fancy;
doc.UpdateFields();

doc.Save(ArtifactsDir + "Field.SetFieldIndexFormat.docx");

Смотрите также