CleanupParagraphsWithPunctuationMarks

MailMerge.CleanupParagraphsWithPunctuationMarks property

Ottiene o imposta un valore che indica se i paragrafi con segni di punteggiatura sono considerati vuoti e devono essere rimossi seRemoveEmptyParagraphs l’opzione è specificata.

public bool CleanupParagraphsWithPunctuationMarks { get; set; }

Osservazioni

Il valore predefinito èVERO .

Ecco l’elenco completo dei segni di punteggiatura pulibili:

  • !
  • ,
  • .
  • :
  • ;
  • ?
  • ¡
  • ¿

Esempi

Mostra come rimuovere i paragrafi con segni di punteggiatura dopo un’operazione di stampa unione.

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

FieldMergeField mergeFieldOption1 = (FieldMergeField) builder.InsertField("MERGEFIELD", "Option_1");
mergeFieldOption1.FieldName = "Option_1";

builder.Write(punctuationMark);

FieldMergeField mergeFieldOption2 = (FieldMergeField) builder.InsertField("MERGEFIELD", "Option_2");
mergeFieldOption2.FieldName = "Option_2";

// Configura la proprietà "CleanupOptions" per rimuovere eventuali paragrafi vuoti che questa stampa unione creerebbe.
doc.MailMerge.CleanupOptions = MailMergeCleanupOptions.RemoveEmptyParagraphs;

// Impostando la proprietà "CleanupParagraphsWithPunctuationMarks" su "true" verranno conteggiati anche i paragrafi
// con i segni di punteggiatura vuoti e l'operazione di stampa unione rimuoverà anche questi.
// Impostazione della proprietà "CleanupParagraphsWithPunctuationMarks" su "false"
// rimuoverà i paragrafi vuoti, ma non quelli con segni di punteggiatura.
// Questo è un elenco di segni di punteggiatura che riguardano questa proprietà: "!", ",", ".", ":", ";", "?", "¡", "¿".
doc.MailMerge.CleanupParagraphsWithPunctuationMarks = cleanupParagraphsWithPunctuationMarks;

doc.MailMerge.Execute(new[] { "Option_1", "Option_2" }, new object[] { null, null });

doc.Save(ArtifactsDir + "MailMerge.RemoveColonBetweenEmptyMergeFields.docx");

Guarda anche