Sort Score
Result 10 results
Languages All
Labels All
Results 1,271 - 1,280 of 4,280 for

values

(0.03 sec)
  1. 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 Java 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/java/extracting-docum...
  2. Handling the Lyrics tag | Documentation

    This article explains how to handle Lyrics tag....LyricsField ( "ABC" , "custom value" )); // ... metadata . Save...Thank you for your feedback! We value your opinion. Your feedback...

    docs.groupdocs.com/metadata/net/handling-the-ly...
  3. Преобразование данных Excel и CSV в C# | XLSX в...

    Преобразование XLS и XLSX в форматы CSV и CSV в форматы Excel в приложениях Java. Автоматизируйте преобразование файлов с помощью Java API для преобразования документов....outputFile = @"path/comma-sparated-values.csv"; using (Converter converter...inputFile = @"path/comma-sparated-values.csv"; string outputFile = @"path/spreadsheet...

    blog.groupdocs.com/ru/conversion/convert-excel-...
  4. Chỉnh sửa và Quản lý Metadata trong Ứng dụng Py...

    Khám phá cách sử dụng GroupDocs.Metadata for Python via .NET để trích xuất, cập nhật và xóa metadata trong các ứng dụng của bạn....interpreted_value if not (property . interpreted_value is None ):...tính: { property . interpreted_value } " ) else : print( f "Tên thuộc...

    blog.groupdocs.com/vi/metadata/edit-metadata-in...
  5. Extract text from Microsoft Office Excel spread...

    To extract a text from Microsoft Office Excel spreadsheets getText and getText(int) method is used. These methods allow to extract a text from the entire document or a text from the selected page. Here are the steps to extract a text from Microsoft Office Excel spreadsheets: Instantiate Parser object for the initial spreadsheet; Call getText method and obtain TextReader object; Read a text from reader. Warning getText method returns null value if text extraction isn’t supported for the document....Warning method returns null value if text extraction isn’t supported...Thank you for your feedback! We value your opinion. Your feedback...

    docs.groupdocs.com/parser/java/extract-text-fro...
  6. Deleting Text signatures - advanced | Documenta...

    This article shows how to delete Text electronic signatures different ways with GroupDocs.Signature API....some data source signature Id value string [] signatureIdList =...Thank you for your feedback! We value your opinion. Your feedback...

    docs.groupdocs.com/signature/net/deleting-text-...
  7. Deleting Image signatures - advanced | Document...

    This article shows how to delete Image electronic signatures different ways with GroupDocs.Signature API....some data source signature Id value String [] signatureIdList =...Thank you for your feedback! We value your opinion. Your feedback...

    docs.groupdocs.com/signature/java/deleting-imag...
  8. מיזוג קבצי PDF, Word, Excel, PowerPoint ב-C# | ...

    מיזוג באופן פרוגרמטי מסמכי PDF, Word, גיליונות אלקטרוניים, קבצי מצגות בתוך היישומים המבוססים על NET שלך באמצעות מיזוג API של GroupDocs ב-C#....bmp) Comma Separated Values File (.csv) Excel Binary Spreadsheet...Format File (.rtf) Tab Separated Values File (.tsv) Visio Drawing (...

    blog.groupdocs.com/he/merger/merge-pdf-word-exc...
  9. Chuyển đổi dữ liệu Excel và CSV trong C# | XLSX...

    Chuyển đổi định dạng XLS & XLSX sang CSV và CSV sang Excel trong các ứng dụng Java. Tự động chuyển đổi tệp của bạn bằng API Java để chuyển đổi tài liệu....outputFile = @"path/comma-sparated-values.csv"; using (Converter converter...inputFile = @"path/comma-sparated-values.csv"; string outputFile = @"path/spreadsheet...

    blog.groupdocs.com/vi/conversion/convert-excel-...
  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....Value)) { Console.WriteLine(reader...parser.GetText(i.PageIndex.Value)) { Console.WriteLine(reader...

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