Underline

Underline enumeration

يشير إلى نوع التسطير المطبق على الخط.

public enum Underline

قيم

اسمقيمةوصف
None0
Single1
Words2
Double3
Dotted4
Thick6
Dash7
DashLong39
DotDash9
DotDotDash10
Wavy11
DottedHeavy20
DashHeavy23
DashLongHeavy55
DotDashHeavy25
DotDotDashHeavy26
WavyHeavy27
WavyDouble43

أمثلة

يوضح كيفية إدراج حقل ارتباط تشعبي.

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

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

//أدرج ارتباطًا تشعبيًا وأبرزه باستخدام التنسيق المخصص.
// سيكون الرابط التشعبي عبارة عن جزء نصي قابل للنقر والذي سيأخذنا إلى الموقع المحدد في عنوان URL.
builder.Font.Color = Color.Blue;
builder.Font.Underline = Underline.Single;
builder.InsertHyperlink("Google website", "https://www.google.com"، خطأ);
builder.Font.ClearFormatting();
builder.Writeln(".");

// الضغط على Ctrl + النقر بزر الماوس الأيسر على الرابط الموجود في النص في Microsoft Word سيأخذنا إلى عنوان URL عبر نافذة متصفح ويب جديدة.
doc.Save(ArtifactsDir + "DocumentBuilder.InsertHyperlink.docx");

أنظر أيضا