Underline
Innehåll
[
Dölj
]Underline enumeration
Indikerar typen av understrykning som appliceras på ett teckensnitt.
public enum Underline
Värderingar
namn | Värde | Beskrivning |
---|---|---|
None | 0 | |
Single | 1 | |
Words | 2 | |
Double | 3 | |
Dotted | 4 | |
Thick | 6 | |
Dash | 7 | |
DashLong | 39 | |
DotDash | 9 | |
DotDotDash | 10 | |
Wavy | 11 | |
DottedHeavy | 20 | |
DashHeavy | 23 | |
DashLongHeavy | 55 | |
DotDashHeavy | 25 | |
DotDotDashHeavy | 26 | |
WavyHeavy | 27 | |
WavyDouble | 43 |
Exempel
Visar hur man infogar ett hyperlänkfält.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.Write("For more information, please visit the ");
// Infoga en hyperlänk och framhäva den med anpassad formatering.
// Hyperlänken kommer att vara ett klickbart stycke text som tar oss till den plats som anges i URL:en.
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 + vänsterklicka på länken i texten i Microsoft Word tar oss till URL:en via ett nytt webbläsarfönster.
doc.Save(ArtifactsDir + "DocumentBuilder.InsertHyperlink.docx");
Se även
- namnutrymme Aspose.Words
- hopsättning Aspose.Words