CaptionlessTableOfFiguresLabel

FieldToc.CaptionlessTableOfFiguresLabel property

Gets or sets the name of the sequence identifier used when building a table of figures that does not include caption’s label and number.

public string CaptionlessTableOfFiguresLabel { get; set; }

Examples

Shows how to set the name of the sequence identifier.

Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);

FieldToc fieldToc = (FieldToc)builder.InsertField(FieldType.FieldTOC, true);
fieldToc.CaptionlessTableOfFiguresLabel = "Test";

Assert.That(fieldToc.GetFieldCode(), Is.EqualTo(" TOC  \\a Test"));

See Also