MergePastedLists

ImportFormatOptions.MergePastedLists property

الحصول على أو تعيين قيمة منطقية تحدد ما إذا كان سيتم دمج القوائم الملصقة مع القوائم المحيطة. القيمة الافتراضية هيخطأ شنيع .

public bool MergePastedLists { get; set; }

أمثلة

يوضح كيفية دمج القوائم من المستندات.

Document srcDoc = new Document(MyDir + "List item.docx");
Document dstDoc = new Document(MyDir + "List destination.docx");

ImportFormatOptions options = new ImportFormatOptions { MergePastedLists = true };

// قم بتعيين خاصية "MergePastedLists" على "صحيح"، وسيتم دمج القوائم الملصقة مع القوائم المحيطة.
dstDoc.AppendDocument(srcDoc, ImportFormatMode.UseDestinationStyles, options);

dstDoc.Save(ArtifactsDir + "Document.MergePastedLists.docx");

أنظر أيضا