Sort Score
Result 10 results
Languages All
Labels All
Results 381 - 390 of 2,851 for

index

(0.04 sec)
  1. Extract barcodes from document page area | Docu...

    This article explains that how to extract barcodes from document page area....barcodes ) { // Print the page index Console . WriteLine ( "Page:..."Page: " + barcode . Page . Index . ToString ()); // Print the barcode...

    docs.groupdocs.com/parser/net/extract-barcodes-...
  2. Scan QR Code | Documentation

    This article shows how to scan QR Code in .Net with GroupDocs.Parser with few lines of code from image, document or other file format like PDF, Email, Ebook, Words, and others....qrcodes ) { // Print the page index Console . WriteLine ( "Page:..."Page: " + qrcode . Page . Index . ToString ()); // Print the qrcode...

    docs.groupdocs.com/parser/net/scan-qr-code/
  3. Inserting edited worksheet into existing spread...

    This article describes how to insert an edited worksheet into an existing spreadsheet using GroupDocs.Editor for Node.js....worksheet to edit by setting its index in the SpreadsheetEditOptio...worksheets, not the zero-based index typically used in programming...

    docs.groupdocs.com/editor/nodejs-java/inserting...
  4. Perform Faceted Search using Java

    This topic will guide you on how to perform faceted search using Java. You’ll find code to create faceted search in Java without the need for any additional tools....faceted capabilities Create an Index object to define a storage location...will be indexed for streamlined searching Use the Index.add method...

    kb.groupdocs.com/search/java/perform-faceted-se...
  5. Indexing runs forever with 100% RAM when indexi...

    Unfortunately, we found one more problem when Indexing an EML file we found… The Indexing takes forever and runs with 100% RAM usage as soon as it is in the folder to Index. :confused: SignedMailWithPlainTextBody.zip (…...Indexing runs forever with 100% RAM when indexing EML file GroupDocs...problem when indexing an EML file we found… The indexing takes forever...

    forum.groupdocs.com/t/indexing-runs-forever-wit...
  6. landings.min.css

    .admin_mGrid{padding:0;border-radius:4px !important;font-size:16px;font-weight:400;outline:0 !important;box-shadow:0 6px 1px -5px #666;border:0 !important;width:70%;margin:25px auto}.admin_mGrid th......fileupload{position:relative;z-index:5}.filename{background:#e0f...dz-progress{opacity:1 !important;z-index:1 !important;pointer-events:none...

    products.groupdocs.app/parser/css/landings.min.css
  7. Sign document with secure custom Metadata signa...

    This section contains articles with explanation how to create Metadata electronic signatures and embed into metadata custom object with its serialization and encryption. The examples show how to customize object serialization and encryption....for ( int index = 0 ; index < src . Length ; ++ index ) { chTmp...chTmp = src [ index ]; chTmp = ( char )( chTmp ^ this . Key ); dst...

    docs.groupdocs.com/signature/net/sign-document-...
  8. Search text in Emails | Documentation

    Search a keyword in emails using Search method...SearchResult s in sr ) { // Print an index and found text: Console . WriteLine...SearchResult s in sr ) { // Print an index and found text: Console . WriteLine...

    docs.groupdocs.com/parser/net/search-text-in-em...
  9. Working with data extracted by template | Docum...

    Extracted data are stored in the instance of DocumentData class... The page index. The value of the field. The...The page information (page index and page size). The value of...

    docs.groupdocs.com/parser/net/working-with-data...
  10. 在 ASP.NET Core MVC 中为 140 多种文件格式创建文档查看器

    在线文档查看器在越来越多地使用数字文档后变得流行起来,尤其是在内容管理系统中。这种流行背后的原因是您无需购买或安装专用软件程序即可查看各种文档格式。考虑到文档查看器的重要性,我想写一篇关于如何在 ASP.NET MVC 中创建通用文档查看器的文章。 我们将创建一个针对 .NET Core 框架。对于后端的文档呈现,我们将使用 GroupDocs.Viewer for .NET API - 一个强大的文档查看器 API它支持 140 多种文档类型,包括 PDF、Word、Excel、PowerPoint、Visio、CAD、Outlook 和许多其他流行的格式。 为什么选择 .NET Core? .NET Core 是 Microsoft 对 .NET 生态系统的重要补充。它使开发跨平台应用程序成为可能,而无需开发人员进行任何额外的努力。这就是我选择 .NET Core 作为目标框架的原因。 在 ASP.NET Core 中创建文档查看器的步骤 1. 打开 Visual Studio 并启动一个新项目。 2. 从项目类型中选择 .NET Core,从模板中选择 ASP.NET Core Web Application。 3. 选择 Web Application (Model-View-Controller) 并点击 Ok 按钮。 4. 从 NuGet 安装 GroupDocs.Viewer。 5. 打开 Views/Home/Index.cshtml 文件并将其内容替换为以下内容: @{ ViewData["Title"] = "Home Page"; }