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

values

(0.27 sec)
  1. מיזוג קבצי 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...
  2. Mesclar arquivos PDF, Word, Excel, PowerPoint e...

    Mescle PDF, documentos do Word, planilhas e arquivos de apresentação programaticamente em seus aplicativos baseados em .NET usando a API Merger do GroupDocs em C#....bmp) Comma Separated Values File (.csv) Excel Binary Spreadsheet...Format File (.rtf) Tab Separated Values File (.tsv) Visio Drawing (...

    blog.groupdocs.com/pt/merger/merge-pdf-word-exc...
  3. 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-...
  4. C#에서 Excel 및 CSV 데이터 변환 | XLSX에서 CSV로 - CSV에서 XLS로

    Java 응용 프로그램 내에서 XLS 및 XLSX를 CSV로 변환하고 CSV를 Excel 형식으로 변환합니다. 문서 변환을 위해 Java API를 사용하여 파일 변환을 자동화하십시오....outputFile = @"path/comma-sparated-values.csv"; using (Converter converter...inputFile = @"path/comma-sparated-values.csv"; string outputFile = @"path/spreadsheet...

    blog.groupdocs.com/ko/conversion/convert-excel-...
  5. Zählen Sie Wörter und Vorkommen jedes Wortes in...

    Zählen Sie die Anzahl der Wörter und deren Vorkommen in PDF-, Word-, Excel-, PowerPoint- und E-Mail-Dokumenten in C# mithilfe der .NET-API zum Analysieren von Dokumenten....Value); // Ergebnisse der Wortzählung...of {0}: {1}", pair.Key, pair.Value); } } } Das Folgende ist die...

    blog.groupdocs.com/de/parser/count-words-and-oc...
  6. 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-...
  7. Menggabungkan File PDF, Word, Excel, PowerPoint...

    Gabungkan PDF, dokumen Word, spreadsheet, file presentasi secara terprogram dalam aplikasi berbasis .NET Anda menggunakan Merger API oleh GroupDocs di C#....bmp) Comma Separated Values File (.csv) Excel Binary Spreadsheet...Format File (.rtf) Tab Separated Values File (.tsv) Visio Drawing (...

    blog.groupdocs.com/id/merger/merge-pdf-word-exc...
  8. Supprimer les métadonnées des documents et des ...

    Supprimez les métadonnées sélectives ou nettoyez toutes les propriétés des métadonnées à l'aide de C# à partir de fichiers DOCX, XLSX, PPTX, PDF, JPG/JPEG, PNG, WebP, e-mail, eBooks, Visio, Zip....Value.Type == MetadataPropertyType.String && p.Value.ToString()...

    blog.groupdocs.com/fr/metadata/remove-metadata-...
  9. Working with metadata in Presentations | Docume...

    GroupDocs.Metadata for .NET provides functionality that allows working with different kinds of presentations such as PPT, PPTX, POTM, POTX, etc. For the full list of supported presentation formats please refer to Supported Document Formats. Detecting the exact type of a presentation The following sample of code will help you to detect the exact type of a loaded presentation and extract some additional file format information. Load a presentation Extract the root metadata package Use the FileType property to obtain file format information AdvancedUsage.... Value ); } } As you can see the code...( "customProperty1" , "some value" ); root . DocumentProperties...

    docs.groupdocs.com/metadata/net/working-with-me...
  10. Working with metadata in Matroska (MKV) files |...

    Reading matroska format-specific properties The GroupDocs.Metadata API supports extracting format-specific information from MKV files. The following are the steps to read native MKV metadata. Load an MKV video Get the root metadata package Extract the native metadata package using MatroskaRootPackage.MatroskaPackage Read the Matroska metadata properties on different levels of the format structure AdvancedUsage.ManagingMetadataForSpecificFormats.Video.Matroska.MatroskaReadNativeMetadataProperties using (Metadata metadata = new Metadata(Constants.InputMkv)) { var root = metadata.GetRootPackage(); // Read the EBML header Console.... WriteLine ( "Value: {0}" , simpleTag . Value ); } } // Read...Thank you for your feedback! We value your opinion. Your feedback...

    docs.groupdocs.com/metadata/net/working-with-me...