Sort Score
Result 10 results
Languages All
Labels All
Results 2,701 - 2,710 of 3,023 for

generation

(1.03 sec)
  1. Licensing and evaluation | GroupDocs

    GroupDocs.Viewer for Node.js provides different plans for purchase or offers a Free Trial and a 30-day Temporary License for evaluation....that there are a number of general policies and practices that...

    docs.groupdocs.com/viewer/nodejs-java/licensing...
  2. Inserting edited slide into existing presentati...

    This article describes how to insert an edited presentation slide into an existing PowerPoint presentation using GroupDocs.Editor for Node.js and Java....save() method would generate a new presentation with just...

    docs.groupdocs.com/editor/nodejs-java/inserting...
  3. business-plan.pdf

    HOME BASED PROFESSIONAL SERVICES Business Plan TABLE OF CONTENTS Introduction 3 1. Executive Summary 5 2. Company Overview 6 3. Business Description 7 4. Market Analysis 8 5. Operating Plan 10 6. M...... This section can be a general overview as more details will...business, whether through generating leads or traffic to a website...

    docs.groupdocs.com/conversion/python-net/_sampl...
  4. 宣布 GroupDocs.Markdown for .NET — 將文件匯出為 Markdown

    Export PDF、Word、Excel、HTML 等檔案為 Markdown,使用本地部署的 .NET API。查看功能、路線圖以及如何開始使用。...seamless integration with the generative AI ecosystem. 為什麼選擇 Markdown?...

    blog.groupdocs.com/zh-hant/markdown/groupdocs-m...
  5. C#を使用してExcelSpreadheetsをPDFに変換する| .NETExcelファイル...

    C#を使用してExcelファイルをPDFに変換します。スプレッドシート変換.NETAPIを使用して、完全なブック、選択したシート、シートのサブシーケンス、または任意のセル範囲を変換します。...Generic.List<int> { 1,3,5} }; // ス...Pages = new System.Collections.Generic.List<int> {2,3,4} }; // 変換後にPDFとして保存...

    blog.groupdocs.com/ja/conversion/convert-excel-...
  6. Sign documents with standard QR Code entries | ...

    This article explains how to create QR-code electronic signature with standard encoded entries like Address, Email, V-Card, MeCard, EPC/SEPA, Event etc..."GTM(9-00)" , Description = "General Team Meeting" , Location =...powerful free online apps. To generate QR codes and/or sign your...

    docs.groupdocs.com/signature/net/sign-documents...
  7. Word Document Viewer – Otevřete a čtěte soubory...

    Naučte se, jak zobrazit dokumenty Word online pomocí bezplatného prohlížeče DOCX nebo programově pomocí rozhraní GroupDocs.Viewer API pro .NET, Java, Python a Node.js.... Generate and save the output file....

    blog.groupdocs.com/cs/viewer/view-word-documents/
  8. בניית פתרון חיפוש טקסט מלא ב-Java | מצא בקבצים ...

    API לחיפוש טקסט מלא עבור יישומי Java לחיפוש באמצעות אינדקס. מצא טקסט במספר קובצי Word, Excel, PDF, TXT של תיקיה והדגש תוצאות חיפוש....highlight(document, highlighter); // Generates HTML formatted output document...

    blog.groupdocs.com/he/search/build-full-text-se...
  9. צור דוח PDF מ-JSON Data ב-Java | JSON ל-PDF ו-DOCX

    הפקת דוחות באופן פרוגרמטי על ידי המרת נתוני JSON ל-PDF ו-Word באמצעות תבניות ב-Java. דוחות PDF ו-DOCX באמצעות Java API ליצירת דוחות.... API של Java Generation Report # אני אשתמש ב- GroupDocs...

    blog.groupdocs.com/he/assembly/generate-pdf-rep...
  10. C#を使用してデータベースファイルからデータを抽出する

    データベース は、ほとんどのアプリケーションの不可欠な部分であると見なされています。デスクトップ、Web、またはモバイルアプリケーションのいずれであっても、データベースはデータの保存、アクセス、および操作において重要な役割を果たします。あなたのためにデータベースを作成して管理することを可能にする多くのデータベース管理システムがあります。 ただし、データベース管理システムをインストールしたり、SQLクエリを記述したりせずに、データベースファイル(**。db **ファイル) からデータを抽出する方法が必要な場合があります。このような場合、データベースファイルをどのように解析し、そこからデータを取得しますか? この記事では、SQLクエリを記述せずにSQLiteデータベースのテーブルからデータを簡単に抽出できることを示します。 ADO.NET。 SQLiteデータベース(.db) のテーブルからデータを抽出する手順 1. VisualStudioで新しいプロジェクトを作成します。 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. パーサー オブジェクトにデータベースファイルをロードします。 using (Parser parser = new Parser(connectionString, new LoadOptions(FileFormat.Database))) { // あなたのコードはここに行きます } 6. Parser.GetToc メソッドを使用して、データベース内のテーブルのリストを取得します。 // テーブルのリストを取得する IEnumerable toc = parser.GetToc(); 7. テーブルを繰り返し処理し、データを抽出します。 // テーブルを反復処理します foreach (TocItem i in toc) { // テーブル名を印刷する Console....Generic; using System.IO; using GroupDocs...

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