Sort Score
Result 10 results
Languages All
Labels All
Results 511 - 520 of 5,884 for

log

(0.14 sec)
  1. GroupDocs.Viewer-for-.NET/.gitignore at master ...

    GroupDocs.Viewer for .NET examples, plugins and showcase - GroupDocs.Viewer-for-.NET/.gitignore at master · groupdocs-viewer/GroupDocs.Viewer-for-.NET...log *.vspscc *.vssscc .builds *.pidb...dat # Visual Studio 6 build log *.plg # Visual Studio 6 workspace...

    github.com/groupdocs-viewer/GroupDocs.Viewer-fo...
  2. RadioButtonFormFieldSignature Properties - Grou...

    Get or set the signature creation date....used only for document history log records to keep the list of deleted...

    apireference.groupdocs.com/signature/net/groupd...
  3. SpreadsheetMetadataSignature Properties - Group...

    Get or set the signature creation date....used only for document history log records to keep the list of deleted...

    apireference.groupdocs.com/signature/net/groupd...
  4. FormFieldSignature | GroupDocs.Signature for .N...

    Contains Form field signature properties....used only for document history log records to keep the list of deleted...

    reference.groupdocs.com/signature/net/groupdocs...
  5. Redaction basics | Documentation

    This article shows that how C# developers can apply metadata, image, annotation and text redaction in their documents. Wide range of document formats is supported, such as, PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX and others....receive instance, containing a log entry for each redaction applied...to iterate through redaction log entries in and check for property...

    docs.groupdocs.com/redaction/net/redaction-basics/
  6. GitHub - jonschlinkert/remarkable: Markdown par...

    Markdown parser, done right. Commonmark support, extensions, syntax plugins, high speed - all in one. Gulp and metalsmith plugins available. Used by Facebook, Docusaurus and many others! Use https://github.com/breakdance/breakdance for HTML-to-markdown conversion. Use https://github.com/jonschlinkert/markdown-toc to generate a table of contents. - jonschlinkert/remarkable... log ( md . render ( '# Remarkable...new Remarkable ( ) ; console . log ( md . render ( '# Remarkable...

    github.com/jonschlinkert/remarkable
  7. Conflict between GroupDocs.Redaction and Aspose...

    Hello there, I have come across an issue in my development project involving document redaction with GroupDocs.Redaction. When I include the GroupDocs.Redaction library in my project, the redaction of documents function…...= new Redactor(stream); var log = redactor.Apply(new ExactPh...WriteLine(log.Status); foreach (var redactionLog in log.RedactionLog)...

    forum.groupdocs.com/t/conflict-between-groupdoc...
  8. ARIA: section role - Accessibility | MDN

    The section role, an abstract role, is a superclass role for renderable structural containment components....role ARIA: listitem role ARIA: log role ARIA: mark role ARIA: marquee...

    developer.mozilla.org/en-US/docs/Web/Accessibil...
  9. DigitalFormFieldSignature | GroupDocs.Signature...

    Contains digital signature input form field properties for Pdf Documents....used only for document history log records to keep the list of deleted...

    reference.groupdocs.com/signature/net/groupdocs...
  10. Use advanced logging | Documentation

    You can implement ILogger interface from com.groupdocs.redaction.options package. This interface requires to implement three methods: import com.groupdocs.redaction.options.ILogger; import java.util.ArrayList; /** *

    * This is an example of ILogger implementation, tracking count of error messages. *

    */ public class CustomLogger implements ILogger { private ArrayList _errors; private ArrayList _traces; private ArrayList _warnings; public boolean hasErrors() { return _errors.size() > 0; } public CustomLogger() { _errors = new ArrayList(); _traces = new ArrayList(); _warnings = new ArrayList(); } public void error(String message) { _errors....documents / Use advanced logging Use advanced logging Leave feedback You...you can use it to track error log records: CustomLogger logger...

    docs.groupdocs.com/redaction/java/use-advanced-...