RedactionPolicy

RedactionPolicy class

表示清理策略,包含一组要应用的特定修订。

public class RedactionPolicy

构造函数

姓名 描述
RedactionPolicy() 创建编辑策略的新实例。
RedactionPolicy(Redaction[]) 使用特定的编辑列表创建编辑策略的新实例。

特性

姓名 描述
Redactions { get; } 获取完全配置的数组Redaction-派生类.

方法

姓名 描述
static Load(Stream) 加载一个实例RedactionPolicy来自流.
static Load(string) 加载一个实例RedactionPolicy来自文件路径.
Save(Stream) 将编辑策略保存到流中。
Save(string) 将编辑策略保存到文件中。

评论

了解更多

例子

以下示例演示如何将编辑策略应用于给定入站文件夹中的所有文件,并保存到出站文件夹之一 - 用于成功更新的文件和失败的文件。

以下示例包含一个示例 XML 策略文件,其中包含适用于所有类型的编辑的示例配置。

RedactionPolicy policy = RedactionPolicy.Load("RedactionPolicy.xml");
foreach (var fileEntry in Directory.GetFileNames("C:\\Inbound")) 
{
     using (Redactor redactor = new Redactor(Path.Combine("C:\\Inbound\\", fileEntry)))
     {
    	     RedactorChangeLog result = redactor.Apply(policy);
    	     String resultFolder = result.Status != RedactionStatus.Failed ? "C:\\Outbound\\Done\\" : "C:\\Outbound\\Failed\\";
    	     using (Stream fileStream = File.Open(Path.Combine(resultFolder, fileEntry), FileMode.Open, FileAccess.ReadWrite))
   	     {
               redactor.Save(fileStream, new RasterizationOptions() { Enabled = false });
   	     }        
     }
}   
<?xml version="1.0" encoding="utf-8"?>  
<redactionPolicy xmlns = "http://www.groupdocs.com/redaction" >
  <regexRedaction regularExpression="(dolor)" actionType="ReplaceString" replacement="foobar" />  
  <exactPhraseRedaction searchPhrase = "dolor" caseSensitive="true" actionType="DrawBox" color="Red" />   
  
  <cellColumnRedaction regularExpression = "(foo)bar1" replacement="[red1]" columnIndex="1" worksheetIndex="2" /> 
  <cellColumnRedaction regularExpression = "(foo)bar2" replacement="[red2]" wokrsheetName="Sample" /> 
  
  <eraseMetadataRedaction filter = "All" />
  <metadataSearchRedaction filter="Title, Author" replacement="foobar" valueExpression="(metasearch)" keyExpression="" />  
  
 <annotationRedaction regularExpression = "(anno1)" replacement="foobar" />  
 <deleteAnnotationRedaction regularExpression = "(anno2)" />

 <imageAreaRedaction pointX="15" pointY="17" width="200" height="10" color="#AA50FC"  />  
 <imageAreaRedaction pointX = "110" pointY="120" width="60" height="20" color="Magenta"  />  
</redactionPolicy>

也可以看看