Sort Score
Result 10 results
Languages All
Labels All
Results 161 - 170 of 4,446 for

groupdocs.redaction,

(0.14 sec)
  1. Save in original format | Documentation

    The following example demonstrates how to save file in its original format with current date as a suffix: final Redactor redactor = new Redactor("sample.docx"); try { // Here we can use document instance to perform redactions redactor.apply(new ExactPhraseRedaction("John Doe", new ReplacementOptions("[personal]"))); SaveOptions saveOptions = new SaveOptions(); saveOptions.setAddSuffix(true); saveOptions.setRasterizeToPDF(false); saveOptions.setRedactedFileSuffix(new SimpleDateFormat("dd-MM-yyyy").format(new Date())); // Saving in original format with date as DateTime.getNow().toShortDateString()a suffix redactor.save(saveOptions); } finally { redactor.close(); }...The following example demonstrates how to save file in its original format with current date as a suffix: final Redactor redactor = new Redactor("sample.docx"); try { // Here we can use document instance to perform redactions redactor.apply(new ExactPhraseRedaction("John Doe", new ReplacementOptions("[personal]"))); SaveOptions saveOptions = new SaveOptions(); saveOptions.setAddSuffix(true); saveOptions.setRasterizeToPDF(false); saveOptions.setRedactedFileSuffix(new SimpleDateFormat("dd-MM-yyyy").format(new Date())); // Saving in original format with date as DateTime.getNow().toShortDateString()a suffix redactor.save(saveOptions); } finally { redactor.close(); }

    docs.groupdocs.com/redaction/java/save-in-origi...
  2. Remove Text from DOCX Online

    Remove DOCX text in content and metadata online....Remove DOCX text in content and metadata online.

    products.groupdocs.app/redaction/remove-text-fr...
  3. Get Credit Consumption Information for Your Met...

    Hello everyone! I am back with another release announcement of GroupDocs.Redaction for .NET 19.5. This release has brought a quite useful feature for the developers who are using GroupDocs.Redaction with our Metered Licence. For those who are unaware of the Metered Licence, let me give you a brief introduction. Afterward, I will talk about the new feature and its usage. Metered License is a type of license that allows you to pay for what you have used....Hello everyone! I am back with another release announcement of GroupDocs.Redaction for .NET 19.5. This release has brought a quite useful feature for the developers who are using GroupDocs.Redaction with our Metered Licence. For those who are unaware of the Metered Licence, let me give you a brief introduction. Afterward, I will talk about the new feature and its usage. Metered License is a type of license that allows you to pay for what you have used.

    blog.groupdocs.com/redaction/get-credit-consump...
  4. GroupDocs.Signature for .NET

    Այս API-ն թույլ է տալիս թվային կերպով ստորագրել ցանկացած տեսակի ֆայլի ձևաչափ՝ օգտագործելով .NET և C# լեզուները ցանկացած հարթակում:...Այս API-ն թույլ է տալիս թվային կերպով ստորագրել ցանկացած տեսակի ֆայլի ձևաչափ՝ օգտագործելով .NET և C# լեզուները ցանկացած հարթակում:

    kb.groupdocs.com/hy/signature/net/page/2/
  5. GroupDocs.Parser for .NET

    此 API 允许您在任何平台上使用 C# .NET 语言执行文本搜索和索引任何类型的文件格式。...此 API 允许您在任何平台上使用 C# .NET 语言执行文本搜索和索引任何类型的文件格式。

    kb.groupdocs.com/zh/parser/net/page/4/
  6. Use PageAreaRedaction | Documentation

    This article explains that how to use PageAreaRedaction....This article explains that how to use PageAreaRedaction.

    docs.groupdocs.com/redaction/net/use-page-area-...
  7. Extend supported extensions list | Documentation

    This article explains the method which can be used when for some reason files have non-standard extensions or if its format is supported, but not pre-configured....This article explains the method which can be used when for some reason files have non-standard extensions or if its format is supported, but not pre-configured.

    docs.groupdocs.com/redaction/net/extend-support...
  8. Save with default options | Documentation

    This article demonstrates the simplest way to save the document...This article demonstrates the simplest way to save the document

    docs.groupdocs.com/redaction/net/save-with-defa...
  9. Use redaction callback | Documentation

    In order to reject specific changes during redaction process or to keep a full log of changes in the document, you need to set Redactor.RedactionCallback property, to a class implementing IRedactionCallback interface. The interface contains only one method, AcceptRedaction, which receives detailed information about proposed redaction and returns Boolean value, accepted or not. Below, we create a callback class, dumping changes to system console: public class RedactionDump implements IRedactionCallback { public RedactionDump() { } public boolean acceptRedaction(RedactionDescription description) { System....In order to reject specific changes during redaction process or to keep a full log of changes in the document, you need to set Redactor.RedactionCallback property, to a class implementing IRedactionCallback interface. The interface contains only one method, AcceptRedaction, which receives detailed information about proposed redaction and returns Boolean value, accepted or not. Below, we create a callback class, dumping changes to system console: public class RedactionDump implements IRedactionCallback { public RedactionDump() { } public boolean acceptRedaction(RedactionDescription description) { System.

    docs.groupdocs.com/redaction/java/use-redaction...
  10. Select specific pages for rasterized PDF | Docu...

    This article demonstrates that how you can specify starting page index (zero based) and the number of pages from this index to save a rasterized PDF...This article demonstrates that how you can specify starting page index (zero based) and the number of pages from this index to save a rasterized PDF

    docs.groupdocs.com/redaction/python-net/select-...