Underline

Underline enumeration

Indicates type of the underline applied to a font.

public enum Underline

Values

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

Examples

Shows how to insert a hyperlink field.

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

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

// Insert a hyperlink and emphasize it with custom formatting.
// The hyperlink will be a clickable piece of text which will take us to the location specified in the URL.
builder.Font.Color = Color.Blue;
builder.Font.Underline = Underline.Single;
builder.InsertHyperlink("Google website", "https://www.google.com", false);
builder.Font.ClearFormatting();
builder.Writeln(".");

// Ctrl + left clicking the link in the text in Microsoft Word will take us to the URL via a new web browser window.
doc.Save(ArtifactsDir + "DocumentBuilder.InsertHyperlink.docx");

See Also