LeftIndent

ParagraphFormat.LeftIndent property

Obtiene o establece el valor (en puntos) que representa la sangría izquierda del párrafo.

public double LeftIndent { get; set; }

Ejemplos

Muestra cómo configurar el formato de párrafo para crear texto descentrado.

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

// Centrar todo el texto que escribe el creador de documentos y configurar sangrías.
// La siguiente configuración de sangría creará un cuerpo de texto que se ubicará asimétricamente en la página.
// El "centro" al que alineamos el texto será la mitad del cuerpo del texto, no la mitad de la página.
ParagraphFormat paragraphFormat = builder.ParagraphFormat;
paragraphFormat.Alignment = ParagraphAlignment.Center;
paragraphFormat.LeftIndent = 100;
paragraphFormat.RightIndent = 50;
paragraphFormat.SpaceAfter = 25;

builder.Writeln(
    "This paragraph demonstrates how left and right indentation affects word wrapping.");
builder.Writeln(
    "The space between the above paragraph and this one depends on the DocumentBuilder's paragraph format.");

doc.Save(ArtifactsDir + "DocumentBuilder.SetParagraphFormatting.docx");

Ver también