ReplaceAction
İçindekiler
[
Saklamak
]ReplaceAction enumeration
Kullanıcının, değiştirme işlemi sırasında geçerli eşleşmeye ne olacağını belirlemesine olanak tanır.
public enum ReplaceAction
değerler
İsim | Değer | Tanım |
---|---|---|
Replace | 0 | Geçerli eşleşmeyi değiştirin. |
Skip | 1 | Mevcut eşleşmeyi atla. |
Stop | 2 | Değiştirme işlemini sonlandırın. |
Örnekler
Bul ve değiştir işleminde bir eşleşmenin yerine belgenin içeriğinin tamamının nasıl ekleneceğini gösterir.
public void InsertDocumentAtReplace()
{
Document mainDoc = new Document(MyDir + "Document insertion destination.docx");
// Bul ve değiştir işlemini değiştirmek için bir "FindReplaceOptions" nesnesi kullanabiliriz.
FindReplaceOptions options = new FindReplaceOptions();
options.ReplacingCallback = new InsertDocumentAtReplaceHandler();
mainDoc.Range.Replace(new Regex("\\[MY_DOCUMENT\\]"), "", options);
mainDoc.Save(ArtifactsDir + "InsertDocument.InsertDocumentAtReplace.docx");
}
private class InsertDocumentAtReplaceHandler : IReplacingCallback
{
ReplaceAction IReplacingCallback.Replacing(ReplacingArgs args)
{
Document subDoc = new Document(MyDir + "Document.docx");
// Eşleşen metni içeren paragraftan sonra bir belge ekleyin.
Paragraph para = (Paragraph)args.MatchNode.ParentNode;
InsertDocument(para, subDoc);
// Eşleşen metnin bulunduğu paragrafı kaldırın.
para.Remove();
return ReplaceAction.Skip;
}
}
/// <summary>
/// Başka bir belgenin tüm düğümlerini bir paragraf veya tablodan sonra ekler.
/// </summary>
private static void InsertDocument(Node insertionDestination, Document docToInsert)
{
if (insertionDestination.NodeType == NodeType.Paragraph || insertionDestination.NodeType == NodeType.Table)
{
CompositeNode dstStory = insertionDestination.ParentNode;
NodeImporter importer =
new NodeImporter(docToInsert, insertionDestination.Document, ImportFormatMode.KeepSourceFormatting);
foreach (Section srcSection in docToInsert.Sections.OfType<Section>())
foreach (Node srcNode in srcSection.Body)
{
// Bir bölümdeki son boş paragrafsa düğümü atla.
if (srcNode.NodeType == NodeType.Paragraph)
{
Paragraph para = (Paragraph)srcNode;
if (para.IsEndOfSection && !para.HasChildNodes)
continue;
}
Node newNode = importer.ImportNode(srcNode, true);
dstStory.InsertAfter(newNode, insertionDestination);
insertionDestination = newNode;
}
}
else
{
throw new ArgumentException("The destination node must be either a paragraph or table.");
}
}
Ayrıca bakınız
- interface IReplacingCallback
- class Range
- method Replace
- ad alanı Aspose.Words.Replacing
- toplantı Aspose.Words