Sort Score
Result 10 results
Languages All
Labels All
Results 1,211 - 1,220 of 4,305 for

values

(0.16 sec)
  1. eSign document with Form Field signature | Docu...

    This article explains how to add various types of Form Field signatures on document page with options on component positioning, alignment and other visual options with GroupDocs.Signature...an unique name, settings and value field. Form Fields should have...Thank you for your feedback! We value your opinion. Your feedback...

    docs.groupdocs.com/signature/java/esign-documen...
  2. generate reports in csharp

    Document Automation APIs to enrich .NET and Java applications to view, edit, annotate, convert, compare, e-sign, parse, split, merge, redact, or classify documents of almost all the popular file formats.... File CSV Comma Separated Values banyak digunakan untuk bertukar...

    blog.groupdocs.com/id/tag/generate-reports-in-c...
  3. Compare two documents - Control header and foot...

    Compare two documents but ignore or include header and footer content. Is this what you need in your document comparison application? Then you must try GroupDocs.Comparison for .NET. This back-end API can be implemented in any of your .NET application without any third party tool/software dependency. Those who are already using this API, we have some interesting features and few bug fixes introduced in GroupDocs.Comparison for .NET 19.11. Set output paper size A new property PaperSize is introduced in CompareOptions class using that you can adjust paper size of the resultant document (e....If you don’t set PaperSize value, output file will has paper...

    blog.groupdocs.com/comparison/compare-two-docum...
  4. Document filtering in search result | Documenta...

    This article gives the knowledge that how the document filters used during the search.... The default value is null, which means that all...Thank you for your feedback! We value your opinion. Your feedback...

    docs.groupdocs.com/search/net/document-filterin...
  5. Extracting document metainfo | Documentation

    Following this guide you will learn how to obtain basic document metadata like pages count, size, file type before editing it with GroupDocs.Editor for .NET API....thing to note: if returns NULL value instead of some of inheritors...Thank you for your feedback! We value your opinion. Your feedback...

    docs.groupdocs.com/editor/net/extracting-docume...
  6. Hapus Metadata Dokumen dan Gambar menggunakan C#

    Hapus metadata selektif atau bersihkan semua properti metadata menggunakan C# dari DOCX, XLSX, PPTX, PDF, JPG/JPEG, PNG, gambar WebP, email, eBuku, Visio, file Zip....Value.Type == MetadataPropertyType.String && p.Value.ToString()...

    blog.groupdocs.com/id/metadata/remove-metadata-...
  7. Odstraňte metadata dokumentů a obrázků pomocí C#

    Odstraňte selektivní metadata nebo vyčistěte všechny vlastnosti metadat pomocí C# ze souborů DOCX, XLSX, PPTX, PDF, JPG/JPEG, PNG, WebP, e-mail, elektronické knihy, Visio, Zip....Value.Type == MetadataPropertyType.String && p.Value.ToString()...

    blog.groupdocs.com/cs/metadata/remove-metadata-...
  8. C# kullanarak Belgelerin ve Resimlerin Meta Ver...

    C# kullanarak DOCX, XLSX, PPTX, PDF, JPG/JPEG, PNG, WebP görüntüleri, e-posta, e-Kitaplar, Visio, Zip dosyalarından seçici meta verileri kaldırın veya tüm meta veri özelliklerini temizleyin....Value.Type == MetadataPropertyType.String && p.Value.ToString()...

    blog.groupdocs.com/tr/metadata/remove-metadata-...
  9. Get comparison result as an object model | Docu...

    This article explains how to get result document object model with GroupDocs.Comparison for .NET....method and assign its return value to a object. You can retrieve...Thank you for your feedback! We value your opinion. Your feedback...

    docs.groupdocs.com/comparison/net/how-to-get-re...
  10. 使用 C# 從數據庫文件中提取數據

    數據庫 被認為是大多數應用程序的組成部分。無論是桌面、Web 還是移動應用程序,數據庫在存儲、訪問和操作數據方面都起著至關重要的作用。有許多數據庫管理系統可以為您創建和管理數據庫。 但是,可能會出現這樣一種情況,即您需要一種方法來從數據庫文件(即 .db 文件)中提取數據,而無需安裝數據庫管理系統或編寫 SQL 查詢。在這種情況下,您將如何解析數據庫文件並從中獲取數據? 在本文中,我將演示如何在不編寫 SQL 查詢的情況下輕鬆地從 SQLite 數據庫中的表中提取數據。我將使用 GroupDocs.Parser for .NET API,它支持通過 ADO.NET。 從 SQLite 數據庫 (.db) 中的表中提取數據的步驟 在 Visual Studio 中創建一個新項目。 從 NuGet 安裝適用於 GroupDocs.Parser for .NET。 添加以下命名空間。 using System; using System.Collections.Generic; using System.IO; using GroupDocs.Parser.Data; using GroupDocs.Parser.Options; 準備連接字符串。 string connectionString = string.Format("Provider=System.Data.Sqlite;Data Source={0};Version=3;", "sqlite.db"); 在 Parser 對像中加載數據庫文件。 using (Parser parser = new Parser(connectionString, new LoadOptions(FileFormat.Database))) { // 你的代碼在這裡 } 使用 Parser.GetToc 方法獲取數據庫中表的列表。 // 獲取表格列表 IEnumerable toc = parser....Value)) { Console.WriteLine(reader...parser.GetText(i.PageIndex.Value)) { Console.WriteLine(reader...

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