IncludeTextboxesFootnotesEndnotesInStat
Document.IncludeTextboxesFootnotesEndnotesInStat property
Kelime sayısı istatistiklerine metin kutularının, dipnotların ve son notların dahil edilip edilmeyeceğini belirtir.
public bool IncludeTextboxesFootnotesEndnotesInStat { get; set; }
Örnekler
Metin kutularının, dipnotların ve son notların kelime sayısı istatistiklerine nasıl dahil edileceğini veya hariç tutulacağını gösterir.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.Writeln("Lorem ipsum");
builder.InsertFootnote(FootnoteType.Footnote, "sit amet");
// Varsayılan olarak seçenek 'yanlış' olarak ayarlanmıştır.
doc.UpdateWordCount();
// Kelimeler metin kutuları, dipnotlar ve son notlar olmadan sayılır.
Assert.AreEqual(2, doc.BuiltInDocumentProperties.Words);
doc.IncludeTextboxesFootnotesEndnotesInStat = true;
doc.UpdateWordCount();
// Kelimeler metin kutuları, dipnotlar ve sonnotlarla sayılır.
Assert.AreEqual(4, doc.BuiltInDocumentProperties.Words);
Ayrıca bakınız
- class Document
- ad alanı Aspose.Words
- toplantı Aspose.Words