Underline

Underline enumeration

Indica il tipo di sottolineatura applicata a un font.

public enum Underline

I valori

NomeValoreDescrizione
None0
Single1
Words2
Double3
Dotted4
Thick6
Dash7
DashLong39
DotDash9
DotDotDash10
Wavy11
DottedHeavy20
DashHeavy23
DashLongHeavy55
DotDashHeavy25
DotDotDashHeavy26
WavyHeavy27
WavyDouble43

Esempi

Mostra come inserire un campo di collegamento ipertestuale.

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

builder.Write("For more information, please visit the ");

// Inserisci un collegamento ipertestuale ed enfatizzalo con una formattazione personalizzata.
// Il collegamento ipertestuale sarà un pezzo di testo cliccabile che ci porterà alla posizione specificata nell'URL.
builder.Font.Color = Color.Blue;
builder.Font.Underline = Underline.Single;
builder.InsertHyperlink("Google website", "https://www.google.com", falso);
builder.Font.ClearFormatting();
builder.Writeln(".");

// Ctrl + clic con il pulsante sinistro del mouse sul collegamento nel testo in Microsoft Word ci porterà all'URL tramite una nuova finestra del browser web.
doc.Save(ArtifactsDir + "DocumentBuilder.InsertHyperlink.docx");

Guarda anche