Shadow

Font.Shadow property

Vero se il font è formattato come ombreggiato.

public bool Shadow { get; set; }

Esempi

Mostra come creare una sequenza di testo formattata con un’ombra.

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

// Imposta il flag Ombra per applicare un effetto ombra offset,
// facendo sembrare che le lettere fluttuino sopra la pagina.
builder.Font.Shadow = true;
builder.Font.Size = 36;

builder.Writeln("This text has a shadow.");

doc.Save(ArtifactsDir + "Font.Shadow.docx");

Guarda anche