IgnoreFootnotes
Inhalt
[
Ausblenden
]FindReplaceOptions.IgnoreFootnotes property
Ruft einen booleschen Wert ab oder legt ihn fest, der angibt, ob Fußnoten ignoriert werden sollen. Der Standardwert istFALSCH
.
public bool IgnoreFootnotes { get; set; }
Beispiele
Zeigt, wie Fußnoten während eines Suchen-und-Ersetzen-Vorgangs ignoriert werden.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.Write("Lorem ipsum dolor sit amet, consectetur adipiscing elit.");
builder.InsertFootnote(FootnoteType.Footnote, "Lorem ipsum dolor sit amet, consectetur adipiscing elit.");
builder.InsertParagraph();
builder.Write("Lorem ipsum dolor sit amet, consectetur adipiscing elit.");
builder.InsertFootnote(FootnoteType.Endnote, "Lorem ipsum dolor sit amet, consectetur adipiscing elit.");
// Setzen Sie das Flag „IgnoreFootnotes“ auf „true“, um das Suchen und Ersetzen zu erhalten
// Operation zum Ignorieren von Text in Fußnoten.
// Setzen Sie das Flag „IgnoreFootnotes“ auf „false“, um das Suchen und Ersetzen zu erhalten
// Operation, um auch nach Text in Fußnoten zu suchen.
FindReplaceOptions options = new FindReplaceOptions { IgnoreFootnotes = isIgnoreFootnotes };
doc.Range.Replace("Lorem ipsum", "Replaced Lorem ipsum", options);
Siehe auch
- class FindReplaceOptions
- namensraum Aspose.Words.Replacing
- Montage Aspose.Words