IsRestartAtEachSection

List.IsRestartAtEachSection property

Especifica si la lista debe reiniciarse en cada sección. El valor predeterminado esFALSO .

public bool IsRestartAtEachSection { get; set; }

Observaciones

Esta opción sólo se admite en formatos de documentos RTF, DOC y DOCX.

Esta opción se escribirá en DOCX sólo siOoxmlCompliance es mayor entoncesEcma376_2006.

Ejemplos

Muestra cómo configurar una lista para reiniciar la numeración en cada sección.

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

doc.Lists.Add(ListTemplate.NumberDefault);

Aspose.Words.Lists.List list = doc.Lists[0];
list.IsRestartAtEachSection = restartListAtEachSection;

// La propiedad "IsRestartAtEachSection" sólo será aplicable cuando
// el nivel de cumplimiento OOXML del documento es un estándar más reciente que "OoxmlComplianceCore.Ecma376".
OoxmlSaveOptions options = new OoxmlSaveOptions
{
    Compliance = OoxmlCompliance.Iso29500_2008_Transitional
};

builder.ListFormat.List = list;

builder.Writeln("List item 1");
builder.Writeln("List item 2");
builder.InsertBreak(BreakType.SectionBreakNewPage);
builder.Writeln("List item 3");
builder.Writeln("List item 4");

doc.Save(ArtifactsDir + "OoxmlSaveOptions.RestartingDocumentList.docx", options);

doc = new Document(ArtifactsDir + "OoxmlSaveOptions.RestartingDocumentList.docx");

Assert.AreEqual(restartListAtEachSection, doc.Lists[0].IsRestartAtEachSection);

Ver también