Sort Score
Result 10 results
Languages All
Labels All
Results 1,061 - 1,070 of 4,308 for

values

(0.04 sec)
  1. eSign document with Barcode signature | Documen...

    This article explains how to add Barcode signature on document page with various options like barcode type, barcode text, positioning, alignment and other visual settings with GroupDocs.Signature... Set property value. Call method of class instance...Thank you for your feedback! We value your opinion. Your feedback...

    docs.groupdocs.com/signature/java/esign-documen...
  2. Search text in Emails | Documentation

    Search a keyword in emails using Search method...Warning method returns null value if search isn’t supported for...Thank you for your feedback! We value your opinion. Your feedback...

    docs.groupdocs.com/parser/net/search-text-in-em...
  3. Indexing reports | Documentation

    Indexing reports are created for indexing and updating operations. Indexing reports can be retrieved from the index using the getIndexingReports method. Reports are stored in the index only while the index is loaded into RAM for use. If you reload the index, the reports will not be restored. You can configure the maximum number of stored reports using the setMaxIndexingReportCount method of the IndexSettings class. The default value is 5. Learn more about index settings on the page Search index settings.... The default value is 5. Learn more about index...Thank you for your feedback! We value your opinion. Your feedback...

    docs.groupdocs.com/search/java/indexing-reports/
  4. Inserting Images Dynamically | Documentation

    Note This feature is supported by version 20.3 or greater. Note The code uses some of the objects defined in The Business Layer. You can insert images to your reports dynamically using image tags. To declare a dynamically inserted image within your template, do the following steps: Add a textbox to your template at the place where you want an image to be inserted. Set common image attributes such as frame, size, and others for the textbox, making the textbox look like a blank inserted image....The expression must return a value of one of the following types:...Thank you for your feedback! We value your opinion. Your feedback...

    docs.groupdocs.com/assembly/net/inserting-image...
  5. Extract hyperlinks from Microsoft Office Word d...

    To extract hyperlinks from Microsoft Office Word document getStructure method is used. This method returns XML representation of the document. Hyperlinks are represented by “hyperlink” tag; “link” attribute contains hyperlink’s URL. For more details, see Extract text structure. Hyperlink can contain a text: google.com Warning getStructure method returns null value if text structure extraction isn’t supported for the document. For example, text structure extraction isn’t supported for TXT files. Therefore, for TXT file getStructure method returns null....Warning method returns null value if text structure extraction...Thank you for your feedback! We value your opinion. Your feedback...

    docs.groupdocs.com/parser/java/extract-hyperlin...
  6. Extract table of contents | Documentation

    This article shows how to extract table of contents from Microsoft Word (DOC, DOCX etc), PDF documents and Ebooks (CHM, EPUB)....// Check if page index has a value if ( i . getPageIndex () ==...Thank you for your feedback! We value your opinion. Your feedback...

    docs.groupdocs.com/parser/java/extract-table-of...
  7. Memory Optimization Option | Documentation

    This article explains how to optimize memory utilization when editing large Word documents using GroupDocs.Editor for Node.js via Java API....setOptimizeMemoryUsa ( boolean value ) By default, this property...Thank you for your feedback! We value your opinion. Your feedback...

    docs.groupdocs.com/editor/nodejs-java/memory-op...
  8. Extrahieren Sie Daten aus Datenbankdateien mit C#

    Die Datenbank gilt als integraler Bestandteil der meisten Anwendungen. Ob es sich um eine Desktop-, Web- oder mobile Anwendung handelt, die Datenbank spielt eine wichtige Rolle beim Speichern, Zugreifen und Bearbeiten der Daten. Es gibt viele Datenbankverwaltungssysteme, mit denen Sie Datenbanken erstellen und verwalten können. Es könnte jedoch ein Szenario geben, in dem Sie eine Möglichkeit zum Extrahieren von Daten aus Datenbankdateien, dh .db-Dateien, benötigen, ohne ein Datenbankverwaltungssystem zu installieren oder die SQL-Abfragen zu schreiben....Value)) { Console.WriteLine(reader...parser.GetText(i.PageIndex.Value)) { Console.WriteLine(reader...

    blog.groupdocs.com/de/parser/extract-data-from-...
  9. Working with metadata in PDF documents | Docume...

    Detecting the version of a PDF document The following sample of code will help you to detect the PDF version a loaded document and extract some additional file format information. Load a PDF document Extract the root metadata package Use the FileType property to obtain file format information AdvancedUsage.ManagingMetadataForSpecificFormats.Document.Pdf.PdfReadFileFormatProperties using (Metadata metadata = new Metadata(Constants.InputPdf)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.FileType.FileFormat); Console.WriteLine(root.FileType.Version); Console.WriteLine(root.FileType.MimeType); Console.WriteLine(root.FileType.Extension); } Reading built-in metadata properties To access built-in metadata of a PDF document, please use the DocumentProperties property defined in the DocumentRootPackage class.... Value ); } } As you can see the code...Console . WriteLine ( field . Value ); // ... } } } Reading document...

    docs.groupdocs.com/metadata/net/working-with-me...
  10. 使用 C# 从数据库文件中提取数据

    数据库 被认为是大多数应用程序的组成部分。无论是桌面、Web 还是移动应用程序,数据库在存储、访问和操作数据方面都发挥着至关重要的作用。有许多数据库管理系统允许为您创建和管理数据库。 然而,当您需要一种从数据库文件(即 .db 文件) 中提取数据的方法时,可能会出现这样的情况,而无需安装数据库管理系统或编写 SQL 查询。在这种情况下,您将如何解析数据库文件并从中获取数据? 在本文中,我将演示如何轻松地从 SQLite 数据库中的表中提取数据,而无需编写 SQL 查询。我将使用 GroupDocs.Parser for .NET API,它支持通过 [ADO.NET](https://en.wikipedia. org/wiki/ADO.NET) 。 从 SQLite 数据库 (.db) 中的表中提取数据的步骤 1. 在 Visual Studio 中创建一个新项目。 2. 从 NuGet 安装 GroupDocs.Parser for .NET。 3. 添加以下命名空间。 using System; using System.Collections.Generic; using System.IO; using GroupDocs.Parser.Data; using GroupDocs.Parser.Options; 4. 准备连接字符串。 string connectionString = string.Format("Provider=System.Data.Sqlite;Data Source={0};Version=3;", "sqlite.db"); 5. 在 Parser 对象中加载数据库文件。 using (Parser parser = new Parser(connectionString, new LoadOptions(FileFormat.Database))) { // 你的代码在这里 } 6....Value)) { Console.WriteLine(reader...parser.GetText(i.PageIndex.Value)) { Console.WriteLine(reader...

    blog.groupdocs.com/zh/parser/extract-data-from-...