Sort Score
Result 10 results
Languages All
Labels All
Results 1,831 - 1,840 of 10,573 for

new

(0.06 sec)
  1. Get text coordinates | Documentation

    Learn how to obtain text coordinates when rendering your documents with Image Viewer by GroupDocs and place text over rendered document page image....Consulting Blog Knowledge Base New Releases Status Websites aspose...... using ( Viewer viewer = new Viewer ( "sample.docx" )) { //...

    docs.groupdocs.com/viewer/net/image-viewer-get-...
  2. Working with attributes | Documentation

    This page contains information about working with attributes in the search network....Consulting Blog Knowledge Base New Releases Status Websites aspose...AttributeChangeBatch batch = new AttributeChangeBatch (); batch...

    docs.groupdocs.com/search/net/working-with-attr...
  3. Free WebP to PNG Converter – Online & Instant |...

    Convert WebP to PNG in seconds using our free online converter. Just upload and download – no signup or software needed. Secure & auto-deletion in 24 hours....using (Converter converter = new Converter("path/image.webp"))...ImageConvertOptions options = new ImageConvertOptions { // Set...

    blog.groupdocs.com/conversion/webp-to-png/
  4. Search text in PDF documents | Documentation

    This article explains that how to search text from PDF documents...Consulting Blog Knowledge Base New Releases Status Websites aspose...class using ( Parser parser = new Parser ( filePath )) { // Search...

    docs.groupdocs.com/parser/net/search-text-in-pd...
  5. Merge PDF | Documentation

    Learn how to merge PDF files, combine PDF files into one file programmatically in C# language using GroupDocs.Merger for .NET library....Consulting Blog Knowledge Base New Releases Status Websites aspose...file using ( Merger merger = new Merger ( @"c:\sample1.pdf" ))...

    docs.groupdocs.com/merger/net/merge/pdf/
  6. Search text in Emails | Documentation

    To search a keyword in emails search(String) method is used. This method returns the collection of SearchResult objects. For details, see Search Text. Here are the steps to search a keyword in the email: Instantiate Parser object for the initial email; Call search(String) method and obtain the collection of SearchResult objects; Iterate through the collection and get the position and text. Warning search(String) method returns null value if search isn’t supported for the email....Consulting Blog Knowledge Base New Releases Status Websites aspose...class try ( Parser parser = new Parser ( Constants . SampleMsg...

    docs.groupdocs.com/parser/java/search-text-in-e...
  7. Get List of Indexed Documents using GroupDocs.S...

    We are pleased to announce the monthly release of GroupDocs.Search for .NET 18.9. Using the latest version, you can now get the list of indexed documents and document’s text from the index archive. Moreover, you can now save encodings automatically which were used to extract text from TXT files. We would recommend you to install and use the latest version of the API. Enhancements Following are the enhancements introduced in the latest version:...existing folder Index index = new Index(indexFolder); // Getting...existing folder Index index = new Index(indexFolder); // Getting...

    blog.groupdocs.com/search/get-list-of-indexed-d...
  8. Search text in EPUB eBooks | Documentation

    This article explains that how to search a keyword in EPUB e-books Search(String) method is used. This method returns the collection of SearchResult objects....Consulting Blog Knowledge Base New Releases Status Websites aspose...class try ( Parser parser = new Parser ( Constants . SampleEpub...

    docs.groupdocs.com/parser/java/search-text-in-e...
  9. Working with TORRENT files | Documentation

    In the BitTorrent file distribution system, a torrent file or METAINFO is a computer file that contains metadata about files and folders to be distributed, and usually also a list of the network locations of trackers, which are computers that help participants in the system find each other and form efficient distribution groups called swarms. A torrent file does not contain the content to be distributed; it only contains information about those files, such as their names, sizes, folder structure, and cryptographic hash values for verifying file integrity....Consulting Blog Knowledge Base New Releases Status Websites aspose...TorrentReadNativeMet try ( Metadata metadata = new Metadata ( Constants . InputTorrent...

    docs.groupdocs.com/metadata/java/working-with-t...
  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....(Parser parser = new Parser(connectionString, new LoadOptions(FileFormat...(Parser parser = new Parser(connectionString, new LoadOptions(FileFormat...

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