The Bulleted List As per wikipedia, a Bulleted List can be described as:
In typography, a bullet ( • ) is a typographical symbol or glyph used to introduce items in a list. For example:
Item 1 Item 2 Item 3 For more information, please visit wikipedia article.
Articles in this section...Security Events Acquisition Ask AI GroupDocs Documentation / GroupDocs...
Learn how to convert documents to XML or JSON data using GroupDocs.Conversion for .NET....Security Events Acquisition Ask AI GroupDocs Documentation / GroupDocs...
This topic describes how to optimize PDF file using the GroupDocs.Viewer Java API for web browser or to reduce size....Security Events Acquisition Ask AI GroupDocs Documentation / GroupDocs...
Learn how to render your document with responsive HTML layout that looks great on mobile and desktop devices....Security Events Acquisition Ask AI GroupDocs Documentation / GroupDocs...
This article explAins how to load PDF, Word, Excel, PowerPoint documents from local disk when using GroupDocs.Comparison for .NET....Security Events Acquisition Ask AI GroupDocs Documentation / GroupDocs...
This article explAins how to load PDF, Word, Excel, PowerPoint documents from local disk when using GroupDocs.Comparison for Java....Security Events Acquisition Ask AI GroupDocs Documentation / GroupDocs...
This article explAins how to check whether PDF, Word, Excel, PowerPoint document is password protected or not, and how to do this using GroupDocs.Merger for .NET....Security Events Acquisition Ask AI GroupDocs Documentation / GroupDocs...
Check this guide to learn how to adjust PNG and JPG images size when rendering documents with Image Viewer by GroupDocs for Java....Security Events Acquisition Ask AI GroupDocs Documentation / GroupDocs...
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(); }...Security Events Acquisition Ask AI GroupDocs Documentation / GroupDocs...