FieldIndexFormat
FieldOptions.FieldIndexFormat property
Obtient ou définit unFieldIndexFormat
qui représente le formatage duFieldIndex
champs dans le document.
public FieldIndexFormat FieldIndexFormat { get; set; }
Exemples
Montre comment formater les champs 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");
Voir également
- enum FieldIndexFormat
- class FieldOptions
- espace de noms Aspose.Words.Fields
- Assemblée Aspose.Words